/* SiteCatalyst code version: H.20.2.
Copyright 1997-2009 Omniture, Inc. More info available at
http://www.omniture.com */
/************************ ADDITIONAL FEATURES ************************
     Plugins
*/

var s_account="cbncomdev"
var s = s_gi(s_account)

/* ******************************************************************	*/
/* CBN CUSTOM CODE														*/
/* ******************************************************************	*/

function parseUrl(data) {
	var e = /((http|ftp):\/)?\/?([^:\/\s]+)((\/[\w\-]+)*\/)(([\w\-\.]+(\.[^#?\s]+))(#[\w\-]+)?)*/;
	//var e = /((http|ftp):\/)?\/?([^:\/\s]+)((\/\w+)*\/)([\w\-\.]+(\.[^#?\s]+)(#[\w\-]+)?)*/;

	if (data.match(e)) {
		return { url: RegExp['$&'],
			protocol: RegExp.$2,
			host: RegExp.$3,
			path: RegExp.$4,
			file: RegExp.$7,
			hash: RegExp.$10
		};
	}
	else {
		return { url: "", protocol: "", host: "", path: "", file: "", hash: "" };
	}
}

function isArray(obj) {
	if (obj.constructor.toString().indexOf("Array") == -1)
		return false;
	else
		return true;
}

function getURLParam(strParamName) {
	var strReturn = "";
	var strHref = window.location.href;
	if (strHref.indexOf("?") > -1) {
		var strQueryString = strHref.substr(strHref.indexOf("?")).toLowerCase();
		var aQueryString = strQueryString.split("&");
		for (var iParam = 0; iParam < aQueryString.length; iParam++) {
			if (aQueryString[iParam].indexOf(strParamName.toLowerCase() + "=") > -1) {
				var aParam = aQueryString[iParam].split("=");
				strReturn = aParam[1];
				break;
			}
		}
	}
	return unescape(strReturn);
}

function appendParameter(sString, sParameterName, sParameterValue) {
	// we need to add this parameter in correct URL format
	
		if (sString.indexOf("?") >= 0) {
			sString = sString + "&" + sParameterName + "=" + sParamValue;
		} else {
			sString = sString + "?" + sParameterName + "=" + sParamValue;
		}
	return sString;
}

/* ******************************************************************	*/
/* CBN: Determine Variables												*/
/* ******************************************************************	*/
try {

	/* ******************************************************************	*/
	/* CBN: Determine Page Name												*/
	/* ******************************************************************	*/
	
	// ensure all page names are not case sensitive
	var om_CurrentURL = document.location.toString().toLowerCase();
	
	// set the full path
	s.prop14 = om_CurrentURL;  // Full Path

	// get the elements of the URL
	om_URL = parseUrl(om_CurrentURL);

	// determine if we need to modify the host portion of the url
	if ((om_URL.host.indexOf("superbookkids.com") >= 0)) {
			om_URL.host = "superbook.cbn.com";
	}
	
	// determine the default filename if none was specified
	 if (!om_URL.file || om_URL.file == "") {
		if ((om_URL.host.indexOf("bible.cbn") >= 0) || (om_URL.host.indexOf("event.cbn") >= 0)) {
			om_URL.file = "default.aspx";
		} else if (om_URL.host.indexOf("search.cbn") >= 0) {
			om_URL.file = "search";
		} else 	{
			om_URL.file = "index.aspx";
		}
	}
	// do we need to append any of the parameters to make the pagename unique i.e. CBN TV, CBN Radio, Contact Forms
	var om_Parameters = "";
	var sParamValue = "";
	if (om_CurrentURL.indexOf("media") >= 0) {
		sParamValue = getURLParam("s");
		if (sParamValue != "") {
			// they have requested a specific video
			om_Parameters = appendParameter(om_Parameters, "s", sParamValue);
		} else {
			// have they requested a specific search
			sParamValue = getURLParam("search");
			if (sParamValue != "") {
				om_Parameters = appendParameter(om_Parameters, "search", sParamValue);
			}
			// also add the keyword identifier parameter as this is used to differentiate between general searches and keyword searches
			sParamValue = getURLParam("t");
			if (sParamValue != "") {
				om_Parameters = appendParameter(om_Parameters, "t", sParamValue);
			}
		}
	} else if (om_CurrentURL.indexOf("radio.aspx") >= 0) {
		// determine what station they are listening to
		if (om_CurrentURL.indexOf("?cbnradio") >= 0) {
			om_Parameters = "?cbnradio";
		} else if (om_CurrentURL.indexOf("?seasonal") >= 0) {
			om_Parameters = "?seasonal";
		} else if (om_CurrentURL.indexOf("?news") >= 0) {
			om_Parameters = "?news";
		} else if (om_CurrentURL.indexOf("gospel") >= 0) {
			om_Parameters = "?gospel";
		} else if (om_CurrentURL.indexOf("praise") >= 0) {
			om_Parameters = "?praise";
		} else {
			om_Parameters = "?cbnradio";  // default station is CBN Radio
		}
	} else if (om_CurrentURL.indexOf("contact") >= 0) {
		sParamValue = getURLParam("topic");
		if (sParamValue != "") {
			// they have requested a specific prayer topic
			om_Parameters = appendParameter(om_Parameters, "topic", sParamValue);
		}
	} else if (om_CurrentURL.indexOf("event") >= 0) {
		sParamValue = getURLParam("eventid");
		if (sParamValue != "") {
			// they have requested a specific event video
			om_Parameters = appendParameter(om_Parameters, "eventid", sParamValue);
		}
	} else if (om_CurrentURL.indexOf("option.aspx") >= 0) {
		sParamValue = getURLParam("o");
		if (sParamValue != "") {
			// they have requested a specific event video
			om_Parameters = appendParameter(om_Parameters, "o", sParamValue);
		}
	}

	s.pageName = om_URL.host + om_URL.path + om_URL.file + om_Parameters;
	
	
	/* ******************************************************************	*/
	/* CBN: Set Page Title													*/
	/* ******************************************************************	*/
	s.prop27 = document.title + " _ " + window.location.href; 

	/* ******************************************************************	*/
	/* CBN: 404	Pages														*/
	/* ******************************************************************	*/

	if ((s.pageName.indexOf("four0four") >= 0) || (s.pageName.indexOf("pagenotfound") >= 0)) {
		// 404 Pages
		s.pageName = "404:" + s.prop14; // add the full path as we need to keep all parameters
		s.pageType = "errorPage";
	}

	/* ******************************************************************	*/
	/* CBN: Search Queries													*/
	/* ******************************************************************	*/

	if (s.pageName.indexOf("search.cbn.com") >= 0) {
		// Internal searches - extract the search term
		s.prop7 = getURLParam('q');
		//var e = /search\?q=([^&]*)&/;
		//if (s.pageName.match(e)) {
		//s.prop7 = RegExp.$1;
	}

	/* ******************************************************************	*/
	/* CBN: Determine Channel and Sections						*/
	/* ******************************************************************	*/
	// split the path to determine the sections
	if (om_URL.path) {
		
		// handle sub domains 
		om_bSubdomain = false;
		if ((om_URL.host.indexOf("superbook") >= 0) || (om_URL.host.indexOf("bible") >= 0) || (om_URL.host.indexOf("my") >= 0) || (om_URL.host.indexOf("blogs") >= 0) || (om_URL.host.indexOf("shop") >= 0) || (om_URL.host.indexOf("parable") >= 0)) {
			om_bSubdomain = true;
			// shop cbn and parable should be the same top level channel
			if (om_URL.host.indexOf("parable") >= 0) {
				s.channel = "shop.cbn.com";
			} else {
				s.channel = om_URL.host; // the top level channel is to be the subdomain (not first level directories or root pages like with cbn.com)
			}
		}
		if (om_URL.path == "/") {
			// this is a top level page in the root
			if (!om_bSubdomain) {
				s.channel = om_URL.host + "/" + om_URL.file;
			} else {
				s.prop1 = om_URL.host + "/" + om_URL.file;
			}
		} else {
			// retrieve all directories/sections
			om_arr_sections = om_URL.path.split("\/");
			if (isArray(om_arr_sections)) {
				// assign the channel variable for cbn.com and the prop1 variable for all sub-domains
				if (om_arr_sections.length > 1) {
					if (om_arr_sections[1] != "") {
						if (!om_bSubdomain) {
							s.channel = om_URL.host + "/" + om_arr_sections[1];
						} else {
							s.prop1 = om_URL.host + "/" + om_arr_sections[1];
							// if this is the blogs sub domain we also need to reclassify the blogs channel according to news blogs or cbn blogs
							if (om_URL.host.indexOf("blogs") >= 0) {
								switch (om_arr_sections[1]) {
									case "jerusalemdateline":
									case "thebrodyfile":
									case "africamatters":
									case "beltwaybuzz":
									case "stakelbeckonterror":
									case "hurdontheweb":
									case "bootsontheground":
									case "healthenews":
										s.channel = om_URL.host + "/cbnnews";
										break;
									default:
										s.channel = om_URL.host + "/cbn";
								}
							}
						}
					}
				}
				// assign the prop1 variable for cbn.com and the prop2 variable for all sub-domains
				if (om_arr_sections.length > 2) {
					if (om_arr_sections[2] != "") {
						if (!om_bSubdomain) {
							s.prop1 = om_URL.host + "/" + om_arr_sections[1] + "/" + om_arr_sections[2];
						} else {
							s.prop2 = om_URL.host + "/" + om_arr_sections[1] + "/" + om_arr_sections[2];
						}
					}
				}
				// assign the prop2 variable for cbn.com and the prop3 variable for all sub-domains
				if (om_arr_sections.length > 3) {
					if (om_arr_sections[3] != "") {
						if (!om_bSubdomain) {
							s.prop2 = om_URL.host + "/" + om_arr_sections[1] + "/" + om_arr_sections[2] + "/" + om_arr_sections[3];
						} else {
							s.prop3 = om_URL.host + "/" + om_arr_sections[1] + "/" + om_arr_sections[2] + "/" + om_arr_sections[3];
						}
					}
				}
				// assign the prop3 variable for cbn.com
				if (om_arr_sections.length > 4) {
					if (om_arr_sections[4] != "") {
						if (!om_bSubdomain) {
							s.prop3 = om_URL.host + "/" + om_arr_sections[1] + "/" + om_arr_sections[2] + "/" + om_arr_sections[3] + "/" + om_arr_sections[4];
						}
					}
				}
			}
		}
		s.hier1 = s.channel;
	}

	/* ******************************************************************	*/
	/* CBN: Determine Content Types											*/
	/* ******************************************************************	*/

	if (s.pageName.indexOf("/christiancourses/goodshepherd/gs_foundations") >= 0) {
		s.prop4 = "Discipleship Course";
		s.prop5 = "Discipleship Course - OGS - Foundations of the Faith";
	}
	else if (s.pageName.indexOf("/christiancourses/goodshepherd/gs_holyspirit") >= 0) {
		s.prop4 = "Discipleship Course";
		s.prop5 = "Discipleship Course - OGS - The Holy Spirit";
	}
	else if (s.pageName.indexOf("/christiancourses/goodshepherd/gs_jesus") >= 0) {
		s.prop4 = "Discipleship Course";
		s.prop5 = "Discipleship Course - OGS - Who Jesus Is";
	}
	else if (s.pageName.indexOf("/christiancourses/goodshepherd/gs_how_to_study_the_bible") >= 0) {
		s.prop4 = "Discipleship Course";
		s.prop5 = "Discipleship Course - OGS - How to Study the Bible";
	}
	else if (s.pageName.indexOf("/community/livingbythebook/finances/") >= 0) {
		s.prop4 = "Discipleship Course";
		s.prop5 = "Discipleship Course - LBTB - Finances";
	}
	else if (s.pageName.indexOf("/spirituallife/christiancourses/livingbythebook/livingbythebook_remotepage") >= 0) {
		s.prop4 = "Discipleship Course";
		s.prop5 = "Discipleship Course - LBTB - Course";
	}
	else if ((s.pageName.indexOf("/spirituallife/cbnteachingsheets/") >= 0) && (s.pageName.indexOf("/spirituallife/cbnteachingsheets/index.aspx") < 0)) {
		s.prop4 = "Discipleship Material";
		s.prop5 = "Discipleship Material - Teaching Sheet";
	}
	else if ((s.pageName.indexOf("/spirituallife/200questions/") >= 0) && (s.pageName.indexOf("/spirituallife/200questions/index.aspx") < 0)) {
		s.prop4 = "Discipleship Material";
		s.prop5 = "Discipleship Material - 200 Questions";
	}
	else if ((s.pageName.indexOf("/spirituallife/devotions/") >= 0) && (s.pageName.indexOf("/spirituallife/devotions/index.aspx") < 0)) {
		s.prop4 = "Discipleship Material";
		s.prop5 = "Discipleship Material - Devotion";
	}
	else if (s.pageName.indexOf("/spirituallife/shareyourfaith/") >= 0) {
		s.prop4 = "Discipleship Resources";
		s.prop5 = "Discipleship Resources - Share Your Faith";
	}
	else if ((s.pageName.indexOf("/giving/") >= 0) && (s.pageName.indexOf("option.aspx") >= 0)) {
		s.prop4 = "Donation - Donation Form";
		s.prop5 = "Donation - Donation Form";
		s.eVar29 = "Donation - Donation Form"; 							// form type
		s.events = "event16"; 											// form view
		s.prop39 = s.pageName; 											// for sitesection success pathing
	}
	else if ((s.pageName.indexOf("/giving/") >= 0) && (s.pageName.indexOf("confirm.aspx") >= 0)) {
		s.prop4 = "Donation - Confirmation Page";
		s.prop5 = "Donation - Confirmation Page";
		s.eVar29 = "Donation - Donation Form"; 							// form type
		s.events = "event15"; 											// form submit
		s.prop39 = s.pageName; 											// for sitesection success pathing
	}
	else if ((s.pageName.indexOf("/giving/") >= 0) && (s.pageName.indexOf("receipt.aspx") >= 0)) {
		s.prop4 = "Donation - Receipt Page";
		s.prop5 = "Donation - Receipt Page";
		s.events = "event24"; 											// donation
		s.prop39 = s.pageName; 											// for sitesection success pathing
		s.eVar30 = "Development - Donation";							// KPI
	}
	else if (s.pageName.indexOf("/community/af/confirmemail.aspx") >= 0) {
		s.events = "event3"; 											// registration confirmation
		s.prop39 = s.pageName; 											// for sitesection success pathing
		s.eVar30 = "Community - Registration Validation";	  			// KPI
	}

	/* ******************************************************************	*/
	/* CBN: Handle Donations    											*/
	/* ******************************************************************	*/
	if (om_bDonation == "true") {
		if ((om_sMonthlyPledge == "Y") || (om_sSinglePledge == "Y")) {
			om_arr_donations = om_sDonationDetail.replace(/\|/g,",").split(",");
			om_donationAmount = 0;
			if (isArray(om_arr_donations)) {
				for (om_di=0; om_di<om_arr_donations.length; om_di=om_di+3) {
					//alert(om_arr_donations[1 + om_di]);
					if (!isNaN(om_arr_donations[1 + om_di])) {
						om_donationAmount = om_donationAmount + parseFloat(om_arr_donations[1 + om_di]);
					}
				}
				if (!isNaN(om_donationAmount)) {
					//alert(om_donationAmount);
					// s.prop26 = Club Level
					if (om_sMonthlyPledge == "Y") {
						s.prop25 = "Monthly Donation";
						s.events = "event20"									// Monthly Pledge Amount
						s.products = ";;;;event20=" + om_donationAmount;

					} else if (om_sSinglePledge == "Y") {
						s.prop25 = "Single Payment Donation";
						s.events = "event19"									// Single Payment Amount
						s.products = ";;;;event19=" + om_donationAmount;
					}
				}	
			}
		}
	}
	
	
} catch (Error) { }


/* ******************************************************************	*/
/* Track KPIs indicated via parameters								*/
/* ******************************************************************	*/
try {

	// was there a KPI variable e.g. a successful superbook registration has /pagename.aspx?om=sbregister
	sOm_Parameter = getURLParam('om');
	if (sOm_Parameter == "sbregister") {
		// we have a successful superbook registration
		s.events = "event3"; 											// registration confirmation
		s.eVar30 = "Community - Superbook Registration";   				// KPI
	}
} catch (Error) { }

	
/* ******************************************************************	*/
/* CBN: Track Legacy Webtrends Campaign Codes							*/
/* ******************************************************************	*/
try {
	// Use Webtrends Campaign Code if no Omniture code is specified
	sOm_CampaignCode = getURLParam('cpid');
	if (sOm_CampaignCode == "") {
		// check if there is a legacy Webtrends Campaign Code
		sOm_CampaignCode = getURLParam('WT.mc_id');
		if (sOm_CampaignCode != "") {
			// we have a legacy campaign code
			s.campaign = "Campaign_WT_" + sOm_CampaignCode;
		}
	}
} catch (Error) { }

/* ******************************************************************		*/
/* CBN: Check Global Variables that determine specific tracking variables	*/
/* ******************************************************************		*/

try {
	if (typeof (sOm) != "undefined") {

		if (sOm == "ev_gospel_view_english") {
			// Viewed Gospel Presentation
			s.eVar30 = "Evangelism - Viewed Gospel Presentation - English"; 	// KPI
			s.events = "event14"; 												// gospel view event
			s.prop39 = "Evangelism - Viewed Gospel Presentation";  			    // site success pathing

		} else if (sOm == "ev_gospel_view_spanish") {
			// Viewed Gospel Presentation
			s.eVar30 = "Evangelism - Viewed Gospel Presentation - Spanish"; 		// KPI
			s.events = "event14"; 												// gospel view event
			s.prop39 = "Evangelism - Viewed Gospel Presentation";   			    // site success pathing

		} else if (sOm == "ev_gospel_ready_english") {
			// Presented with Salvation Prayer
			s.eVar30 = "Evangelism - Ready to Make Commitment - English"; 		// KPI
			s.prop39 = "Evangelism - Ready to Make Commitment";   			    // site success pathing

		} else if (sOm == "ev_gospel_ready_spanish") {
			// Presented with Salvation Prayer
			s.eVar30 = "Evangelism - Ready to Make Commitment - Spanish"; 		 // KPI
			s.prop39 = "Evangelism - Ready to Make Commitment";   			    // site success pathing


		} else if (sOm == "ev_gospel_made_commitment_english") {
			// Prayed Salvation Prayer and Presented with Commitment Form
			s.eVar29 = "Evangelism - Commitment Form"; 							// form type
			s.events = "event16"; 												// form view
			s.eVar30 = "Evangelism - Prayed Salvation Prayer - English";
			s.prop39 = "Evangelism - Prayed Salvation Prayer";   				// site success pathing

		} else if (sOm == "ev_gospel_made_commitment_spanish") {
			// Prayed Salvation Prayer and Presented with Commitment Form
			s.eVar29 = "Evangelism - Commitment Form"; 							// form type
			s.events = "event16"; 												// form view
			s.eVar30 = "Evangelism - Prayed Salvation Prayer - Spanish"; 		// KPI
			s.prop39 = "Evangelism - Prayed Salvation Prayer";   				// site success pathing

		} else if (sOm == "ev_gospel_new_commitment_english") {
			// Submitted form and indicated a new commitment
			s.eVar29 = "Evangelism - Commitment Form"; 							// form type
			s.events = "event15,event12"; 										// form success and new commitment events
			s.eVar30 = "Evangelism - Contacted Us - New Commitment - English";
			s.prop39 = "Evangelism - Contacted Us - New Commitment"; 		// site success pathing


		} else if (sOm == "ev_gospel_new_commitment_spanish") {
			// Submitted form and indicated a new commitment
			s.eVar29 = "Evangelism - Commitment Form"; 							// form type
			s.events = "event15,event12"; 										// form success and new commitment events
			s.eVar30 = "Evangelism - Contacted Us - New Commitment - Spanish"; // KPI
			s.prop39 = "Evangelism - Contacted Us - New Commitment"; 		// site success pathing

		} else if (sOm == "ev_gospel_recommitment_english") {
			// Submitted form and indicated a recommitment
			s.eVar29 = "Evangelism - Commitment Form"; 							// form type
			s.events = "event15,event13"; 										// form success and recommitment events
			s.eVar30 = "Evangelism - Contacted Us - Recommitment - English"; // KPI
			s.prop39 = "Evangelism - Contacted Us - Recommitment"; 				// site success pathing

		} else if (sOm == "ev_gospel_recommitment_spanish") {
			// Submitted form and indicated a recommitment
			s.eVar29 = "Evangelism - Commitment Form"; 							// form type
			s.events = "event15,event13"; 										// form success and recommitment events
			s.eVar30 = "Evangelism - Contacted Us - Recommitment - Spanish"; // KPI
			s.prop39 = "Evangelism - Contacted Us - Recommitment"; 				// site success pathing

		} else if (sOm == "ev_gospel_not_ready_english") {
			// Not Ready and Presented with Question Form
			s.eVar29 = "Evangelism - Questions Form"; 							// form type
			s.events = "event16"; 												// form view
			s.eVar30 = "Evangelism - Not Ready to Make Commitment - English"	// KPI
			s.prop39 = "Evangelism - Not Ready to Make Commitment"; 			// site success pathing

		} else if (sOm == "ev_gospel_not_ready_spanish") {
			// Not Ready and Presented with Question Form
			s.eVar29 = "Evangelism - Questions Form"; 							// form type
			s.events = "event16"; 												// form view
			s.eVar30 = "Evangelism - Not Ready to Make Commitment - Spanish"	// KPI
			s.prop39 = "Evangelism - Not Ready to Make Commitment"; 			// site success pathing

		} else if (sOm == "ev_gospel_asked_question_english") {
			// Not Ready and Submitted Question
			s.eVar29 = "Evangelism - Questions Form"; 							// form type
			s.events = "event15"; 												// form success
			s.eVar30 = "Evangelism - Contacted Us - Asked Question - English";
			s.prop39 = "Evangelism - Contacted Us - Asked Question"; 			// site success pathing

		} else if (sOm == "ev_gospel_asked_question_spanish") {
			// Not Ready and Submitted Question
			s.eVar29 = "Evangelism - Questions Form"; 							// form type
			s.events = "event15"; 												// form success
			s.eVar30 = "Evangelism - Contacted Us - Asked Question - Spanish"; // KPI
			s.prop39 = "Evangelism - Contacted Us - Asked Question"; 			// site success pathing

		} else if (sOm == "ministry_prayer_request_form_view") {
			// Viewed Prayer Request Form
			s.eVar29 = "Ministry - Prayer Request Form"; 						// form type
			s.events = "event16"; 												// form view
			s.prop39 = "Ministry - Prayer Request Form"; 						// site success pathing

		} else if (sOm == "ministry_prayer_request_form_submit") {
			// Submitted a Prayer Request
			s.eVar29 = "Ministry - Prayer Request Form"; 						// form type
			s.events = "event15"; 												// form success
			if (typeof (sOm_FormName) != "undefined") {
				s.eVar30 = "Ministry - Submitted Prayer Request - " + sOm_FormName; // KPI
			}
			s.prop39 = "Ministry - Submitted Prayer Request"; 						// site success pathing

		} else if (sOm == "email_subscribe") {
			// Subscribed to an email update or email discipleship course
			s.events = "event17"; 												// email subscribe
			if (typeof (sOm_EmailName) != "undefined") {
				s.eVar28 = "Email - Subscribe - " + sOm_EmailName;
				s.prop39 = s.eVar28; 											// site success pathing
			}

		} else if (sOm == "email_unsubscribe") {
			// Unsubscribed to an email update or email discipleship course
			s.events = "event18"; 												// email unsubscribe
			if (typeof (sOm_EmailName) != "undefined") {
				s.eVar28 = "Email - Unsubscribe - " + sOm_EmailName;
				s.prop39 = s.eVar28; 											// site success pathing
			}
		} else if (sOm == "mycbn_register_form") {
			// Viewed mycbn registration  Form
			s.eVar29 = "Community - mycbn Registration Form"; 					// form type
			s.events = "event16"; 												// form view
			s.prop39 = s.eVar29; 												// site success pathing
		} else if (sOm == "mycbn_register_success") {
			// Completed mycbn registration
			s.eVar29 = "Community - mycbn Registration Form"; 					// form type
			s.events = "event15"; 												// form submit
			s.eVar30 = "Community - mycbn Registration Validation"; 			// KPI
			s.prop39 = s.eVar30; 												// site success pathing
		} else if (sOm == "church_referral_form") {
			// form to search for a local church
			s.eVar29 = "Discipleship - Local Church Referral Form";			// form type
			s.events = "event16"											// form view
			s.prop39 = s.eVar29;											// site success pathing
		} else if (sOm == "church_referral_submit") {
			// searched for a local church
			s.eVar29 = "Discipleship - Local Church Referral Form";			// form type
			s.events = "event15"											// form submit
			s.eVar30 = "Discipleship - Local Church Referral"; 				// KPI
			s.prop39 = s.eVar30;											// site success pathing
		}

	}

	// Handle Custom SiteSection Success Pathing
	if (!s.prop39) {
		// not a specific success page, default to the current Site Section (thereby enabling site section success pathing)
		s.prop39 = s.channel;
	}

} catch (Error) {}
/* ******************************************************************	*/
/* END CBN CUSTOM CODE													*/
/* ******************************************************************	*/

/************************** CONFIG SECTION **************************/
/* You may add or alter any code config here. */
/* Conversion Config */
s.currencyCode="USD"
/* Link Tracking Config */
s.trackDownloadLinks=false
s.trackExternalLinks=false
s.trackInlineStats=true
s.linkDownloadFileTypes="exe,zip,wav,mp3,mov,mpg,avi,wmv,pdf,doc,docx,xls,xlsx,ppt,pptx"
s.linkInternalFilters="javascript:,."
s.linkLeaveQueryString=false
s.linkTrackVars="None"
s.linkTrackEvents="None"
/* Plugin Config */
s.usePlugins=true

s.formList = ""
s.trackFormList = false
s.trackPageName = true
s.useCommerce = true
s.varUsed = "eVar43"
s.eventList = "event25" //Abandon,Success,Error

function s_doPlugins(s) {
	/* Add calls to plugins here */
	
	/* Set Page View Event */
	s.events=s.apl(s.events,'event2',',',2)	

	/* External Campaign Tracking */	
	
	if(!s.campaign)
		s.campaign=s.getQueryParam('cpid')
	s.campaign = s.getValOnce(s.campaign, 's_campaign', 0)	
		

	/* Time Parting  -  Needs to be updated each year*/
	s.prop8=s.getTimeParting('h','-5','2009'); // Set hour 
	s.prop9=s.getTimeParting('d','-5','2009'); // Set day
	s.prop10=s.getTimeParting('w','-5','2009'); // Set Weekend / Weekday

	/*getNewRepeat*/
	s.prop21=s.getNewRepeat();
		

	/* Featured Content Tracking */
	if(!s.eVar13)
		s.eVar13=s.getQueryParam('intcmp')
	if(s.eVar13) s.events=s.apl(s.events,"event6",",",2);


	/* Internal Search Tracking */
	if(!s.prop7)
		s.prop7=s.getQueryParam('q')
	s.prop7=s.prop7.toLowerCase()
	if(s.prop7){
		s.eVar7=s.prop7
	var t_search=s.getValOnce(s.eVar7,'ev1',0)
	if(t_search)
		s.events=s.apl(s.events,"event1",",",2)
	}


/* Copy props to eVars */
if(s.pageName&&!s.eVar11) s.eVar11=s.pageName;
if(s.channel&&!s.eVar12) s.eVar12=s.channel;
if(s.prop1&&!s.eVar1) s.eVar1=s.prop1;
if(s.prop2&&!s.eVar2) s.eVar2=s.prop2;	
if(s.prop3&&!s.eVar3) s.eVar3=s.prop3;
if(s.prop4&&!s.eVar4) s.eVar4=s.prop4;
if(s.prop5&&!s.eVar5) s.eVar5=s.prop5;	
if(s.prop6&&!s.eVar6) s.eVar6=s.prop6;
if(s.prop8&&!s.eVar8) s.eVar8=s.prop8;
if(s.prop9&&!s.eVar9) s.eVar9=s.prop9;
if(s.prop10&&!s.eVar10) s.eVar10=s.prop10;
if(s.prop21&&!s.eVar21) s.eVar21=s.prop21;
if(s.prop15&&!s.eVar15) s.eVar15=s.prop15;
if(s.prop25&&!s.eVar25) s.eVar25=s.prop25;
if(s.prop26&&!s.eVar26) s.eVar26=s.prop26;
if(s.prop38&&!s.eVar38) s.eVar38=s.prop38;
if (s.prop14 && !s.eVar39) s.eVar39 = s.prop14;

/* Copy eVars to props */
if(s.eVar30&&!s.prop30) s.prop30=s.eVar30;

/* All Traffic Sources plugin */
s.allTrafficSources('cpid','organic:');
s.prop22=s.eVar22=s.atsCampaign;
s.prop23=s.eVar23=s.atsKeywords;
s.prop24=s.eVar24=s.atsChannel;

if(s.eVar22) {	s.events=s.apl(s.events,'event22',',',2);	s.ClickThroughCheck1="1"}
if(!s.eVar22)s.ClickThroughCheck1="2";
s.ClickThroughCheck2=s.getPreviousValue(s.ClickThroughCheck1,'ctc2','');
if(!s.eVar22&&s.ClickThroughCheck2=="1") s.events=s.apl(s.events,'event23',',',2);


/* CustomVisNum & Resetting New vs Repeat */
s.prop32=s.eVar32=s.getVisitNumCustom('d'); // daily visits
s.prop33=s.eVar33=s.getVisitNumCustom('w'); // weekly visits
s.prop34=s.eVar34=s.getVisitNumCustom('m'); // monthly visits
if (s.eVar32=="1" && s.eVar32) {s.prop35=s.eVar35="New";} else  if (s.eVar32!="1" && s.eVar32){s.prop35=s.eVar35="Repeat";}  	// daily new vs repeat
if (s.eVar33=="1" && s.eVar33) {s.prop36=s.eVar36="New";} else  if (s.eVar33!="1" && s.eVar33){s.prop36=s.eVar36="Repeat";}  	// weekly new vs repeat
if (s.eVar34=="1" && s.eVar34) {s.prop37=s.eVar37="New";} else  if (s.eVar34!="1" && s.eVar34){s.prop37=s.eVar37="Repeat";} 	// monthly new vs repeat

/* Form Analysis Plugin */
// only enable Form analysis on selected pages
try {
	if (window.location.href.toLowerCase().indexOf("option.aspx") > -1) {
		s.setupFormAnalysis();
	}
} catch (Error) { }

/*Cross Visit Participation 
//Function crossVisitParticipation(v,cn,ex,ct,dl,ev,dv)*/
/*********************************************************************
*	PARAMETERS:
*		v  = value to stack
*		cn = name of the cookie storing the list of values
*		ex = expiration (in days) of each value in the list
*		ct = number of distinct values to store in the list
*		dl = value delimiter
*		ev = (optional) Comma seperated list of success events that will clear the list
*		dv = (optional) whether consecutive duplicate values will be stored (0=no, 1=yes)
*
*********************************************************************/
s.eVar44 = s.crossVisitParticipation(s.campaign, 's_ev', '14', '4', '>', '', '');

 
  
}
s.doPlugins=s_doPlugins
/************************** PLUGINS SECTION *************************/
/* You may insert any plugins you wish to use here.                 */

/*
 * Plugin: getTimeParting 1.3 - Set timeparting values based on time zone
 */

s.getTimeParting=new Function("t","z","y",""
+"dc=new Date('1/1/2000');f=15;ne=8;if(dc.getDay()!=6||"
+"dc.getMonth()!=0){return'Data Not Available'}else{;z=parseInt(z);"
+"if(y=='2009'){f=8;ne=1};gmar=new Date('3/1/'+y);dsts=f-gmar.getDay("
+");gnov=new Date('11/1/'+y);dste=ne-gnov.getDay();spr=new Date('3/'"
+"+dsts+'/'+y);fl=new Date('11/'+dste+'/'+y);cd=new Date();"
+"if(cd>spr&&cd<fl){z=z+1}else{z=z};utc=cd.getTime()+(cd.getTimezoneO"
+"ffset()*60000);tz=new Date(utc + (3600000*z));thisy=tz.getFullYear("
+");var days=['Sunday','Monday','Tuesday','Wednesday','Thursday','Fr"
+"iday','Saturday'];if(thisy!=y){return'Data Not Available'}else{;thi"
+"sh=tz.getHours();thismin=tz.getMinutes();thisd=tz.getDay();var dow="
+"days[thisd];var ap='AM';var dt='Weekday';var mint='00';if(thismin>3"
+"0){mint='30'}if(thish>=12){ap='PM';thish=thish-12};if (thish==0){th"
+"ish=12};if(thisd==6||thisd==0){dt='Weekend'};var timestring=thish+'"
+":'+mint+ap;var daystring=dow;var endstring=dt;if(t=='h'){return tim"
+"estring}if(t=='d'){return daystring};if(t=='w'){return en"
+"dstring}}};"
);




/*
 * Plugin: getNewRepeat 1.0 - Return whether user is new or repeat
 */
s.getNewRepeat=new Function(""
+"var s=this,e=new Date(),cval,ct=e.getTime(),y=e.getYear();e.setTime"
+"(ct+30*24*60*60*1000);cval=s.c_r('s_nr');if(cval.length==0){s.c_w("
+"'s_nr',ct,e);return 'New';}if(cval.length!=0&&ct-cval<30*60*1000){s"
+".c_w('s_nr',ct,e);return 'New';}if(cval<1123916400001){e.setTime(cv"
+"al+30*24*60*60*1000);s.c_w('s_nr',ct,e);return 'Repeat';}else retur"
+"n 'Repeat';");





/*
 * Plugin: getQueryParam 2.3
 */
s.getQueryParam=new Function("p","d","u",""
+"var s=this,v='',i,t;d=d?d:'';u=u?u:(s.pageURL?s.pageURL:s.wd.locati"
+"on);if(u=='f')u=s.gtfs().location;while(p){i=p.indexOf(',');i=i<0?p"
+".length:i;t=s.p_gpv(p.substring(0,i),u+'');if(t){t=t.indexOf('#')>-"
+"1?t.substring(0,t.indexOf('#')):t;}if(t)v+=v?d+t:t;p=p.substring(i="
+"=p.length?i:i+1)}return v");
s.p_gpv=new Function("k","u",""
+"var s=this,v='',i=u.indexOf('?'),q;if(k&&i>-1){q=u.substring(i+1);v"
+"=s.pt(q,'&','p_gvf',k)}return v");
s.p_gvf=new Function("t","k",""
+"if(t){var s=this,i=t.indexOf('='),p=i<0?t:t.substring(0,i),v=i<0?'T"
+"rue':t.substring(i+1);if(p.toLowerCase()==k.toLowerCase())return s."
+"epa(v)}return ''");



/*
 * Plugin: getValOnce 0.2 - get a value once per session or number of days
 */
s.getValOnce=new Function("v","c","e",""
+"var s=this,k=s.c_r(c),a=new Date;e=e?e:0;if(v){a.setTime(a.getTime("
+")+e*86400000);s.c_w(c,v,e?a:0);}return v==k?'':v");



/*
 * Utility Function: split v1.5 - split a string (JS 1.0 compatible)
 */
s.split=new Function("l","d",""
+"var i,x=0,a=new Array;while(l){i=l.indexOf(d);i=i>-1?i:l.length;a[x"
+"++]=l.substring(0,i);l=l.substring(i+d.length);}return a");



/*
 * Plugin Utility: apl v1.1
 */
s.apl=new Function("L","v","d","u",""
+"var s=this,m=0;if(!L)L='';if(u){var i,n,a=s.split(L,d);for(i=0;i<a."
+"length;i++){n=a[i];m=m||(u==1?(n==v):(n.toLowerCase()==v.toLowerCas"
+"e()));}}if(!m)L=L?L+d+v:v;return L");


/*
 * Plugin Utility: Replace v1.0
 */
s.repl=new Function("x","o","n",""
+"var i=x.indexOf(o),l=n.length;while(x&&i>=0){x=x.substring(0,i)+n+x."
+"substring(i+o.length);i=x.indexOf(o,i+l)}return x");

/*
 * Plugin: getPreviousValue_v1.0 - return previous value of designated
 *   variable (requires split utility)
 */
s.getPreviousValue=new Function("v","c","el",""
+"var s=this,t=new Date,i,j,r='';t.setTime(t.getTime()+1800000);if(el"
+"){if(s.events){i=s.split(el,',');j=s.split(s.events,',');for(x in i"
+"){for(y in j){if(i[x]==j[y]){if(s.c_r(c)) r=s.c_r(c);v?s.c_w(c,v,t)"
+":s.c_w(c,'no value',t);return r}}}}}else{if(s.c_r(c)) r=s.c_r(c);v?"
+"s.c_w(c,v,t):s.c_w(c,'no value',t);return r}");

/*
 * Plugin: allTrafficSources v1.1
 */
s.allTrafficSources=new Function("a","b","c","d","e","f","g","h","i","j",""
+"var s=this,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,T;A=s.referrer?s.ref"
+"errer:document.referrer;j=j?j:'Typed/Bookmarked';if(!A)B=j;C=A.inde"
+"xOf('?')>-1?A.indexOf('?'):A.length;D=A.substring(0,C);F=s.split(s."
+"linkInternalFilters,',');E=F.length-1;for(G=0;G<=E;G++){H=D.indexOf"
+"(F[G])==-1?'':A;if(H)I=H}J=A.indexOf('//')>-1?A.indexOf('//')+2:0;i"
+"f(!I&&!B){f=f?f:'Paid Search';g=g?g:'Natural Search';h=h?h:'Paid No"
+"n-Search';i=i?i:'Referrers';J=A.indexOf('//')>-1?A.indexOf('//')+2:"
+"0;K=A.indexOf('/',J)>-1?A.indexOf('/',J):C;L=A.substring(J,K);M=L;B"
+"=N=i;C='.google.|q>.yahoo.|p>.msn.|q>.live.|q>.ask.|q>.aol.|query>."
+"myway.|searchfor>.netscape.|query>.altavista.|q>.lycos.|query';C=c?"
+"C+'>'+c:C;D=s.split(C,'>');E=D.length-1;for(G=0;G<=E;G++){F=D[G];F="
+"s.split(F,'|');O=L.indexOf(F[0]);if(O>-1){P=s.getQueryParam(F[1],''"
+",A);if(P)Q=P}}}R=s.getQueryParam(a);if(R){M=R;if(Q){B=N=f}else{B=N="
+"h}}if(!R&&Q){M=b+L;B=N=g}if(Q)Q=Q.toLowerCase();if(M){M=M.toLowerCa"
+"se();M=s.repl(M,'www.','')}T=Q+M;T=s.getValOnce(T,'ats',0);if(d){C="
+"s.split(d,'>');D=C.length;for(G=0;G<=D;G++){if(C[G]){E=s.split(C[G]"
+",'|');F=s.getQueryParam(E[1]);if(F)B=N=E[0]}}}if(e){C=s.split(e,'>'"
+");D=C.length;for(G=0;G<=D;G++){if(C[G]){E=s.split(C[G],'|');F=R.ind"
+"exOf(E[1]);if(F==0)B=N=E[0]}}}if(T){s.atsCampaign=T?M:'';s.atsKeywo"
+"rds=T?Q:'';s.atsChannel=T?N:''}B=s.getValOnce(B,'cs',0);s.atsChanne"
+"lStack=B;");

/*
*  Plugin:  getVisNum Custom v.1  adapted for CBN.com
*/ 
s.dimo=new Function ("m","y", "var d=new Date(y,m+1,0); return d.getDate();");
s.endof=new Function ("x", "var t = new Date(); t.setHours(0); t.setMinutes(0);"
	+"t.setSeconds(0); if(x=='m') d=s.dimo(t.getMonth(),t.getFullYear()) - t.getDate() + 1;"
	+"else if(x=='w') d=7-t.getDay(); else d=1; t.setDate(t.getDate()+d); return t;");
s.getVisitNumCustom=new Function("tp", ""
+"var s=this,e=new Date(),cval,cvisit,ct=e.getTime(),c='s_vnum_'+tp,c2='sinvisit_'+tp,eo=s.endof(tp),"
+"y=eo.getTime();e.setTime(y);cval=s.c_r(c);if(cval){var i=cval.indexOf('&vn='),str=cval.substring(i+4,cval.length),k;}"
+"cvisit=s.c_r(c2);if(cvisit){if(str){e.setTime(ct+30*60*1000);s.c_w(c2,'true',e);return str;}"
+"else return 'unknown visit number';}"
+"else{if(str){str++;k=cval.substring(0,i);e.setTime(k);s.c_w(c,k+'&vn='+str,e);e.setTime(ct+30*60*1000);s.c_w(c2,'true',e);return str;}"
+"else{s.c_w(c,y+'&vn=1',e);e.setTime(ct+30*60*1000);s.c_w(c2,'true',e);return 1;}}"
);

/*
* Plugin: Form Analysis 2.1 (Abandonment)
*/
s.setupFormAnalysis = new Function(""
+ "var s=this;if(!s.fa){s.fa=new Object;var f=s.fa;f.ol=s.wd.onload;s."
+ "wd.onload=s.faol;f.uc=s.useCommerce;f.vu=s.varUsed;f.vl=f.uc?s.even"
+ "tList:'';f.tfl=s.trackFormList;f.fl=s.formList;f.va=new Array('',''"
+ ",'','')}");
s.sendFormEvent = new Function("t", "pn", "fn", "en", ""
+ "var s=this,f=s.fa;t=t=='s'?t:'e';f.va[0]=pn;f.va[1]=fn;f.va[3]=t=='"
+ "s'?'Success':en;s.fasl(t);f.va[1]='';f.va[3]='';");
s.faol = new Function("e", ""
+ "var s=s_c_il[" + s._in + "],f=s.fa,r=true,fo,fn,i,en,t,tf;if(!e)e=s.wd."
+ "event;f.os=new Array;if(f.ol)r=f.ol(e);if(s.d.forms&&s.d.forms.leng"
+ "th>0){for(i=s.d.forms.length-1;i>=0;i--){fo=s.d.forms[i];fn=fo.name"
+ ";tf=f.tfl&&s.pt(f.fl,',','ee',fn)||!f.tfl&&!s.pt(f.fl,',','ee',fn);"
+ "if(tf){f.os[fn]=fo.onsubmit;fo.onsubmit=s.faos;f.va[1]=fn;f.va[3]='"
+ "No Data Entered';for(en=0;en<fo.elements.length;en++){el=fo.element"
+ "s[en];t=el.type;if(t&&t.toUpperCase){t=t.toUpperCase();var md=el.on"
+ "mousedown,kd=el.onkeydown,omd=md?md.toString():'',okd=kd?kd.toStrin"
+ "g():'';if(omd.indexOf('.fam(')<0&&okd.indexOf('.fam(')<0){el.s_famd"
+ "=md;el.s_fakd=kd;el.onmousedown=s.fam;el.onkeydown=s.fam}}}}}f.ul=s"
+ ".wd.onunload;s.wd.onunload=s.fasl;}return r;");
s.faos = new Function("e", ""
+ "var s=s_c_il[" + s._in + "],f=s.fa,su;if(!e)e=s.wd.event;if(f.vu){s[f.v"
+ "u]='';f.va[1]='';f.va[3]='';}su=f.os[this.name];return su?su(e):tru"
+ "e;");
s.fasl = new Function("e", ""
+ "var s=s_c_il[" + s._in + "],f=s.fa,a=f.va,l=s.wd.location,ip=s.trackPag"
+ "eName,p=s.pageName;if(a[1]!=''&&a[3]!=''){a[0]=!p&&ip?l.host+l.path"
+ "name:a[0]?a[0]:p;if(!f.uc&&a[3]!='No Data Entered'){if(e=='e')a[2]="
+ "'Error';else if(e=='s')a[2]='Success';else a[2]='Abandon'}else a[2]"
+ "='';var tp=ip?a[0]+':':'',t3=e!='s'?':('+a[3]+')':'',ym=!f.uc&&a[3]"
+ "!='No Data Entered'?tp+a[1]+':'+a[2]+t3:tp+a[1]+t3,ltv=s.linkTrackV"
+ "ars,lte=s.linkTrackEvents,up=s.usePlugins;if(f.uc){s.linkTrackVars="
+ "ltv=='None'?f.vu+',events':ltv+',events,'+f.vu;s.linkTrackEvents=lt"
+ "e=='None'?f.vl:lte+','+f.vl;f.cnt=-1;if(e=='e')s.events=s.pt(f.vl,'"
+ ",','fage',2);else if(e=='s')s.events=s.pt(f.vl,',','fage',1);else s"
+ ".events=s.pt(f.vl,',','fage',0)}else{s.linkTrackVars=ltv=='None'?f."
+ "vu:ltv+','+f.vu}s[f.vu]=ym;s.usePlugins=false;var faLink=new Object"
+ "();faLink.href='#';s.tl(faLink,'o','Form Analysis');s[f.vu]='';s.us"
+ "ePlugins=up}return f.ul&&e!='e'&&e!='s'?f.ul(e):true;");
s.fam = new Function("e", ""
+ "var s=s_c_il[" + s._in + "],f=s.fa;if(!e) e=s.wd.event;var o=s.trackLas"
+ "tChanged,et=e.type.toUpperCase(),t=this.type.toUpperCase(),fn=this."
+ "form.name,en=this.name,sc=false;if(document.layers){kp=e.which;b=e."
+ "which}else{kp=e.keyCode;b=e.button}et=et=='MOUSEDOWN'?1:et=='KEYDOW"
+ "N'?2:et;if(f.ce!=en||f.cf!=fn){if(et==1&&b!=2&&'BUTTONSUBMITRESETIM"
+ "AGERADIOCHECKBOXSELECT-ONEFILE'.indexOf(t)>-1){f.va[1]=fn;f.va[3]=e"
+ "n;sc=true}else if(et==1&&b==2&&'TEXTAREAPASSWORDFILE'.indexOf(t)>-1"
+ "){f.va[1]=fn;f.va[3]=en;sc=true}else if(et==2&&kp!=9&&kp!=13){f.va["
+ "1]=fn;f.va[3]=en;sc=true}if(sc){nface=en;nfacf=fn}}if(et==1&&this.s"
+ "_famd)return this.s_famd(e);if(et==2&&this.s_fakd)return this.s_fak"
+ "d(e);");
s.ee = new Function("e", "n", ""
+ "return n&&n.toLowerCase?e.toLowerCase()==n.toLowerCase():false;");
s.fage = new Function("e", "a", ""
+ "var s=this,f=s.fa,x=f.cnt;x=x?x+1:1;f.cnt=x;return x==a?e:'';");

/*
* s.join: 1.0 - s.join(v,p)
*
*  v - Array (may also be array of array)
*  p - formatting parameters (front, back, delim, wrap)
*
*/

s.join = new Function("v", "p", ""
+ "var s = this;var f,b,d,w;if(p){f=p.front?p.front:'';b=p.back?p.back"
+ ":'';d=p.delim?p.delim:'';w=p.wrap?p.wrap:'';}var str='';for(var x=0"
+ ";x<v.length;x++){if(typeof(v[x])=='object' )str+=s.join( v[x],p);el"
+ "se str+=w+v[x]+w;if(x<v.length-1)str+=d;}return f+str+b;");

/*
*	Plug-in: crossVisitParticipation v1.5 - stacks values from
*	specified variable in cookie and returns value
*/

s.crossVisitParticipation = new Function("v", "cn", "ex", "ct", "dl", "ev", "dv", ""
+ "var s=this,ce;if(typeof(dv)==='undefined')dv=0;if(s.events&&ev){var"
+ " ay=s.split(ev,',');var ea=s.split(s.events,',');for(var u=0;u<ay.l"
+ "ength;u++){for(var x=0;x<ea.length;x++){if(ay[u]==ea[x]){ce=1;}}}}i"
+ "f(!v||v=='')return '';v=escape(v);var arry=new Array(),a=new Array("
+ "),c=s.c_r(cn),g=0,h=new Array();if(c&&c!='')arry=eval(c);var e=new "
+ "Date();e.setFullYear(e.getFullYear()+5);if(dv==0 && arry.length>0 &"
+ "& arry[arry.length-1][0]==v)arry[arry.length-1]=[v, new Date().getT"
+ "ime()];else arry[arry.length]=[v, new Date().getTime()];var start=a"
+ "rry.length-ct<0?0:arry.length-ct;var td=new Date();for(var x=start;"
+ "x<arry.length;x++){var diff=Math.round((td.getTime()-arry[x][1])/86"
+ "400000);if(diff<ex){h[g]=unescape(arry[x][0]);a[g]=[arry[x][0],arry"
+ "[x][1]];g++;}}var data=s.join(a,{delim:',',front:'[',back:']',wrap:"
+ "\"'\"});s.c_w(cn,data,e);var r=s.join(h,{delim:dl});if(ce) s.c_w(cn"
+ ",'');return r;");


/* Configure Modules and Plugins */

s.loadModule("Media")
s.Media.autoTrack=false
s.Media.trackWhilePlaying=true
s.Media.trackVars="None"
s.Media.trackEvents="None"

/* WARNING: Changing any of the below variables will cause drastic
changes to how your visitor data is collected.  Changes should only be
made when instructed to do so by your account manager.*/
s.trackingServer="metrics.cbn.com"
s.trackingServerSecure="smetrics.cbn.com"
s.visitorNamespace="cbn"
s.dc="122"

/****************************** MODULES *****************************/
/* Module: Media */
s.m_Media_c="(`OWhilePlaying~='s_media_'+m._in+'_~unc^D(~;`E~m.ae(mn,l,\"'+p+'\",~){var m=this~o;w.percent=((w.off^e+1)/w`X)*100;w.percent=w.percent>1~o.'+f~=new ~o.Get~:Math.floor(w.percent);w.timeP"
+"layed=i.t~}`x p');p=tcf(o)~Time~x,x!=2?p:-1,o)}~if(~m.monitor)m.monitor(m.s,w)}~m.s.d.getElementsByTagName~ersionInfo~'^N_c_il['+m._in+'],~'o','var e,p=~else~i.to~=Math.floor(~}catch(e){p=~m.track~"
+"s.wd.addEventListener~.name~m.s.rep(~layState~||^8~Object~m.s.wd[f1]~^A+=i.t+d+i.s+d+~.length~parseInt(~Player '+~s.wd.attachEvent~'a','b',c~Media~pe='m~;o[f1]~m.s.isie~.current~);i.~p<p2||p-p2>5)~"
+".event=~m.close~i.lo~vo.linkTrack~=v+',n,~.open~){w.off^e=~;n=m.cn(n);~){this.e(n,~v=e='None';~Quick~MovieName()~);o[f~out(\"'+v+';~return~1000~i.lx~m.ol~o.controls~m.s.ape(i.~load',m.as~)}};m.~scr"
+"ipt';x.~,t;try{t=~Version()~n==~'--**--',~pev3~o.id~i.ts~tion~){mn=~1;o[f7]=~();~(x==~){p='~&&m.l~l[n])~:'')+i.e~':'E')+o~var m=s~!p){tcf~xc=m.s.~Title()~()/~7+'~+1)/i.l~;i.e=''~3,p,o);~m.l[n]=~Dat"
+"e~5000~;if~i.lt~';c2='~tm.get~Events~set~Change~)};m~',f~(x!=~4+'=n;~~^N.m_i('`c');m.cn=f`2n`5;`x `Rm.s.rep(`Rn,\"\\n\",''),\"\\r\",''),^9''^g`o=f`2n,l,p,b`5,i`8`U,tm`8^X,a='',x`ql=`Yl)`3!l)l=1`3n&"
+"&p){`E!m.l)m.l`8`U`3m.^K`k(n)`3b&&b.id)a=b.id;for (x in m.l)`Em.l[x]^J[x].a==a)`k(m.l[x].n`hn=n;i.l=l;i.p=m.cn(p`ha=a;i.t=0;^C=0;i.s`M^c`C^R`y`hlx=0;^a=i.s;`l=0^U;`L=-1;^Wi}};`k=f`2n`r0,-1^g.play=f"
+"`2n,o`5,i;i=m.e(n,1,o`hm`8F`2`Ii`3m.l){i=m.l[\"'+`Ri.n,'\"','\\\\\"')+'\"]`3i){`E`z==1)m.e(i.n,3,-1`hmt=^e`Cout(i.m,^Y)}}'`hm(^g.stop=f`2n,o`r2,o)};`O=f`2n`5^Z `0) {m.e(n,4,-1^4e=f`2n,x,o`5,i,tm`8^"
+"X,ts`M^c`C^R`y),ti=`OSeconds,tp=`OMilestones,z`8Array,j,d=^9t=1,b,v=`OVars,e=`O^d,`dedia',^A,w`8`U,vo`8`U`qi=n^J&&m.l[n]?m.l[n]:0`3i){w`Q=n;w`X=i.l;w.playerName=i.p`3`L<0)w`j\"OPEN\";`K w`j^H1?\"PL"
+"AY\":^H2?\"STOP\":^H3?\"MONITOR\":\"CLOSE\")));w`o`C`8^X^Gw`o`C.^e`C(i.s*`y)`3x>2||^i`z&&^i2||`z==1))) {b=\"`c.\"+name;^A = ^2n)+d+i.l+d+^2p)+d`3x){`Eo<0&&^a>0){o=(ts-^a)+`l;o=o<i.l?o:i.l-1}o`Mo)`3"
+"x>=2&&`l<o){i.t+=o-`l;^C+=o-`l;}`Ex<=2){i.e+=^H1?'S^M;`z=x;}`K `E`z!=1)m.e(n,1,o`hlt=ts;`l=o;`W`0&&`L>=0?'L'+`L^L+^i2?`0?'L^M:'')^Z`0){b=0;`d_o'`3x!=4`p`600?100`A`3`F`E`L<0)`d_s';`K `Ex==4)`d_i';`K"
+"{t=0;`sti=ti?`Yti):0;z=tp?m.s.sp(tp,','):0`3ti&&^C>=ti)t=1;`K `Ez){`Eo<`L)`L=o;`K{for(j=0;j<z`X;j++){ti=z[j]?`Yz[j]):0`3ti&&((`L^T<ti/100)&&((o^T>=ti/100)){t=1;j=z`X}}}}}}}`K{m.e(n,2,-1)^Z`0`pi.l`6"
+"00?100`A`3`F^W0`3i.e){`W`0&&`L>=0?'L'+`L^L^Z`0){`s`d_o'}`K{t=0;m.s.fbr(b)}}`K t=0;b=0}`Et){`mVars=v;`m^d=e;vo.pe=pe;vo.^A=^A;m.s.t(vo,b)^Z`0){^C=0;`L=o^U}}}}`x i};m.ae=f`2n,l,p,x,o,b){`En&&p`5`3!m."
+"l||!m.^Km`o(n,l,p,b);m.e(n,x,o^4a=f`2o,t`5,i=^B?^B:o`Q,n=o`Q,p=0,v,c,c1,c2,^Ph,x,e,f1,f2`1oc^h3`1t^h4`1s^h5`1l^h6`1m^h7`1c',tcf,w`3!i){`E!m.c)m.c=0;i`1'+m.c;m.c++}`E!^B)^B=i`3!o`Q)o`Q=n=i`3!^0)^0`8"
+"`U`3^0[i])`x;^0[i]=o`3!xc)^Pb;tcf`8F`2`J0;try{`Eo.v`H&&o`g`c&&^1)p=1`N0`B`3^O`8F`2`J0^6`9`t`C^7`3t)p=2`N0`B`3^O`8F`2`J0^6`9V`H()`3t)p=3`N0`B}}v=\"^N_c_il[\"+m._in+\"],o=^0['\"+i+\"']\"`3p==1^IWindo"
+"ws `c `Zo.v`H;c1`np,l,x=-1,cm,c,mn`3o){cm=o`g`c;c=^1`3cm&&c^Ecm`Q?cm`Q:c.URL;l=cm.dura^D;p=c`gPosi^D;n=o.p`S`3n){`E^88)x=0`3^83)x=1`3^81`T2`T4`T5`T6)x=2;}^b`Ex>=0)`4`D}';c=c1+c2`3`f&&xc){x=m.s.d.cr"
+"eateElement('script');x.language='j^5type='text/java^5htmlFor=i;x`j'P`S^f(NewState)';x.defer=true;x.text=c;xc.appendChild(x`v6]`8F`2c1+'`E^83){x=3;'+c2+'}^e`Cout(`76+',^Y)'`v6]()}}`Ep==2^I`t`C `Z(`"
+"9Is`t`CRegistered()?'Pro ':'')+`9`t`C^7;f1=f2;c`nx,t,l,p,p2,mn`3o^E`9`u?`9`u:`9URL^Gn=`9Rate^Gt=`9`CScale^Gl=`9Dura^D^Rt;p=`9`C^Rt;p2=`75+'`3n!=`74+'||`i{x=2`3n!=0)x=1;`K `Ep>=l)x=0`3`i`42,p2,o);`4"
+"`D`En>0&&`7^S>=10){`4^V`7^S=0}`7^S++;`7^j`75+'=p;^e`C`w`72+'(0,0)\",500)}'`e`8F`2`b`v4]=-^F0`e(0,0)}`Ep==3^IReal`Z`9V`H^Gf1=n+'_OnP`S^f';c1`nx=-1,l,p,mn`3o^E`9^Q?`9^Q:`9Source^Gn=`9P`S^Gl=`9Length^"
+"R`y;p=`9Posi^D^R`y`3n!=`74+'){`E^83)x=1`3^80`T2`T4`T5)x=2`3^80&&(p>=l||p==0))x=0`3x>=0)`4`D`E^83&&(`7^S>=10||!`73+')){`4^V`7^S=0}`7^S++;`7^j^b`E`72+')`72+'(o,n)}'`3`V)o[f2]=`V;`V`8F`2`b1+c2)`e`8F`2"
+"`b1+'^e`C`w`71+'(0,0)\",`73+'?500:^Y);'+c2`v4]=-1`3`f)o[f3]=^F0`e(0,0^4as`8F`2'e',`Il,n`3m.autoTrack&&`G){l=`G(`f?\"OBJECT\":\"EMBED\")`3l)for(n=0;n<l`X;n++)m.a(^K;}')`3`a)`a('on^3);`K `E`P)`P('^3,"
+"false)";
s.m_i("Media");

/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code='',s_objectID;function s_gi(un,pg,ss){var c="=fun`o(~){`Ps=^O~.substring(~#1 ~.indexOf(~;@z~`e@z~=new Fun`o(~.length~.toLowerCase()~`Ps#7c_il['+s^Zn+'],~=new Object~};s.~`YMigrationServer~"
+".toUpperCase~){@z~','~s.wd~);s.~')q='~=new Array~ookieDomainPeriods~.location~^LingServer~dynamicAccount~var ~link~s.m_~s.apv~BufferedRequests~=='~Element~)@zx^a!Object#VObject.prototype#VObject.pr"
+"ototype[x])~etTime~visitor~$u@a(~referrer~s.pt(~s.maxDelay~}c#D(e){~else ~.lastIndexOf(~^xc_i~.protocol~=new Date~^xobjectID=s.ppu=$E=$Ev1=$Ev2=$Ev3=~#e+~=''~}@z~@ji=~ction~javaEnabled~onclick~Name"
+"~ternalFilters~javascript~s.dl~@6s.b.addBehavior(\"# default# ~=parseFloat(~typeof(v)==\"~window~cookie~while(~s.vl_g~Type~;i#T{~tfs~s.un~;v=^sv,255)}~&&s.~o^xoid~browser~.parent~document~colorDept"
+"h~String~.host~s.rep(~s.eo~'+tm@R~s.sq~parseInt(~t=s.ot(o)~track~nload~j='1.~this~#OURL~}else{~s.vl_l~lugins~'){q='~dynamicVariablePrefix~');~Sampling~s.rc[un]~Event~._i~&&(~loadModule~resolution~s"
+".c_r(~s.c_w(~s.eh~s.isie~\"m_\"+n~;@jx in ~Secure~Height~tcf~isopera~ismac~escape(~'s_~.href~screen.~s.fl(~s#7gi(~Version~harCode~variableProvider~.s_~)s_sv(v,n[k],i)}~){s.~)?'Y':'N'~u=m[t+1](~i)cl"
+"earTimeout(~e&&l$YSESSION'~name~home#O~;try{~,$k)~s.ssl~s.oun~s.rl[u~Width~o.type~s.vl_t~Lifetime~s.gg('objectID~sEnabled~')>=~'+n+'~.mrq(@uun+'\"~ExternalLinks~charSet~lnk~onerror~currencyCode~.sr"
+"c~disable~.get~MigrationKey~(''+~&&!~f',~r=s[f](~u=m[t](~Opera~Math.~s.ape~s.fsg~s.ns6~conne~InlineStats~&&l$YNONE'~Track~'0123456789~true~for(~+\"_c\"]~s.epa(~t.m_nl~s.va_t~m._d~=s.sp(~n=s.oid(o)~"
+",'sqs',q);~LeaveQuery~n){~\"'+~){n=~){t=~'_'+~\",''),~if(~vo)~s.sampled~=s.oh(o);~+(y<1900?~n]=~&&o~:'';h=h?h~;'+(n?'o.~sess~campaign~lif~'http~s.co(~ffset~s.pe~'&pe~m._l~s.c_d~s.brl~s.nrs~s[mn]~,'"
+"vo~s.pl~=(apn~space~\"s_gs(\")~vo._t~b.attach~2o7.net'~Listener~Year(~d.create~=s.n.app~)}}}~!='~'=')~1);~'||t~)+'/~s()+'~){p=~():''~'+n;~a['!'+t]~){v=s.n.~channel~100~rs,~.target~o.value~s_si(t)~'"
+")dc='1~\".tl(\")~etscape~s_')t=t~omePage~='+~l&&~&&t~[b](e);~\"){n[k]~';s.va_~a+1,b):~return~mobile~height~events~random~code~=s_~=un~,pev~'MSIE ~'fun~floor(~atch~transa~s.num(~m._e~s.c_gd~,'lt~tm."
+"g~.inner~;s.gl(~,f1,f2~',s.bc~page~Group,~.fromC~sByTag~')<~++)~)){~||!~?'&~+';'~[t]=~[i]=~[n];~' '+~'+v]~>=5)~:'')~+1))~!a[t])~~s._c=^pc';`H=`y`5!`H`g@t`H`gl`K;`H`gn=0;}s^Zl=`H`gl;s^Zn=`H`gn;s^Zl["
+"s^Z$4s;`H`gn++;s.an#7an;s.cls`0x,c){`Pi,y`l`5!c)c=^O.an;`n0;i<x`8^3n=x`2i,i+1)`5c`4n)>=0)y+=n}`3y`Cfl`0x,l){`3x?@Tx)`20,l):x`Cco`0o`F!o)`3o;`Pn`B,x^io)@zx`4'select#S0&&x`4'filter#S0)n[x]=o[x];`3n`C"
+"num`0x){x`l+x;@j`Pp=0;p<x`8;p#T@z(@h')`4x`2p,p#f<0)`30;`31`Crep#7rep;s.sp#7sp;s.jn#7jn;@a`0x`1,h=@hABCDEF',i,c=s.@L,n,l,e,y`l;c=c?c`E$f`5x){x`l+x`5c`UAUTO'^a'').c^vAt){`n0;i<x`8^3c=x`2i,i+$an=x.c^v"
+"At(i)`5n>127){l=0;e`l;^0n||l<4){e=h`2n%16,n%16+1)+e;n=(n-n%16)/16;l++}y+='%u'+e}`6c`U+')y+='%2B';`ey+=^oc)}x=y^Qx=x?^F^o''+x),'+`G%2B'):x`5x&&c^7em==1&&x`4'%u#S0&&x`4'%U#S0){i=x`4'%^V^0i>=0){i++`5h"
+"`28)`4x`2i,i+1)`E())>=0)`3x`20,i)+'u00'+x`2i);i=x`4'%',i$X}`3x`Cepa`0x`1;`3x?un^o^F''+x,'+`G ')):x`Cpt`0x,d,f,a`1,t=x,z=0,y,r;^0t){y=t`4d);y=y<0?t`8:y;t=t`20,y);@Wt,a)`5r)`3r;z+=y+d`8;t=x`2z,x`8);t"
+"=z<x`8?t:''}`3''`Cisf`0t,a){`Pc=a`4':')`5c>=0)a=a`20,c)`5t`20,2)`U$s`22);`3(t!`l$w==a)`Cfsf`0t,a`1`5`ba,`G,'is@Vt))@b+=(@b!`l?`G`kt;`30`Cfs`0x,f`1;@b`l;`bx,`G,'fs@Vf);`3@b`Csi`0wd`1,c`l+s_gi,a=c`4"
+"\"{\"),b=c`f\"}\"),m;c#7fe(a>0&&b>0?c`2#00)`5wd&&wd.^B&&c){wd.s`Xout(#B`o s_sv(o,n,k){`Pv=o[k],i`5v`F`xstring\"||`xnumber\")n[k]=v;`eif (`xarray$y`K;`n0;i<v`8;i++^y`eif (`xobject$y`B;@ji in v^y}}fu"
+"n`o $o{`Pwd=`y,s,i,j,c,a,b;wd^xgi`7\"un\",\"pg\",\"ss\",@uc+'\");wd.^t@u@9+'\");s=wd.s;s.sa(@u^5+'\"`I^4=wd;`b^1,\",\",\"vo1\",t`I@M=^G=s.`Q`r=s.`Q^2=`H`j\\'\\'`5t.m_$v@m)`n0;i<@m`8^3n=@m[i]`5@tm=t"
+"#ac=t[^h]`5m&&c){c=\"\"+c`5c`4\"fun`o\")>=0){a=c`4\"{\");b=c`f\"}\");c=a>0&&b>0?c`2#00;s[^h@k=c`5#G)s.^b(n)`5s[n])@jj=0;j<$G`8;j#Ts_sv(m,s[n],$G[j]$X}}`Pe,o,t@6o=`y.opener`5o$5^xgi@wo^xgi(@u^5+'\")"
+"`5t)$o}`d}',1)}`Cc_d`l;#Hf`0t,a`1`5!#Ft))`31;`30`Cc_gd`0`1,d=`H`M^E@4,n=s.fpC`L,p`5!n)n=s.c`L`5d@U$H@vn?^Jn):2;n=n>2?n:2;p=d`f'.')`5p>=0){^0p>=0&&n>1$ed`f'.',p-$an--}$H=p>0&&`bd,'.`Gc_gd@V0)?d`2p):"
+"d}}`3$H`Cc_r`0k`1;k=@a(k);`Pc=#bs.d.`z,i=c`4#bk+$Z,e=i<0?i:c`4';',i),v=i<0?'':@lc`2i+2+k`8,e<0?c`8:e));`3v$Y[[B]]'?v:''`Cc_w`0k,v,e`1,d=#H(),l=s.`z@E,t;v`l+v;l=l?@Tl)`E$f`5@3@f@w(v!`l?^Jl?l:0):-60)"
+"`5t){e`i;e.s`X(e.g`X()+(t*$k0))}`mk@f^zd.`z=k+'`Zv!`l?v:'[[B]]')+'; path=/;'+(@3?' expires$ue.toGMT^D()#X`k(d?' domain$ud#X:'^V`3^dk)==v}`30`Ceh`0o,e,r,f`1,b=^p'+e+@xs^Zn,n=-1,l,i,x`5!^fl)^fl`K;l=^"
+"fl;`n0;i<l`8&&n<0;i++`Fl[i].o==o&&l[i].e==e)n=i`mn<0@vi;l[n]`B}x=l#ax.o=o;x.e=e;f=r?x.b:f`5r||f){x.b=r?0:o[e];x.o[e]=f`mx.b){x.o[b]=x.b;`3b}`30`Ccet`0f,a,t,o,b`1,r,^l`5`S>=5^a!s.^m||`S>=7#U^l`7's`G"
+"f`Ga`Gt`G`Pe,r@6@Wa)`dr=s[t](e)}`3r^Vr=^l(s,f,a,t)^Q@zs.^n^7u`4#A4@H0)r=s[b](a);else{^f(`H,'@N',0,o);@Wa`Ieh(`H,'@N',1)}}`3r`Cg^4et`0e`1;`3s.^4`Cg^4oe`7'e`G`Ac;^f(`y,\"@N\",1`Ie^4=1;c=s.t()`5c)s.d."
+"write(c`Ie^4=0;`3@i'`Ig^4fb`0a){`3`y`Cg^4f`0w`1,p=w^A,l=w`M;s.^4=w`5p&&p`M!=$vp`M^E==l^E^z^4=p;`3s.g^4f(s.^4)}`3s.^4`Cg^4`0`1`5!s.^4^z^4=`H`5!s.e^4)s.^4=s.cet('g^4@Vs.^4,'g^4et',s.g^4oe,'g^4fb')}`3"
+"s.^4`Cmrq`0u`1,l=@A],n,r;@A]=0`5l)@jn=0;n<l`8;n#T{r=l#as.mr(0,0,r.r,0,r.t,r.u)}`Cbr`0id,rs`1`5s.@Q`T#V^e^pbr',rs))$I=rs`Cflush`T`0){^O.fbr(0)`Cfbr`0id`1,br=^d^pbr')`5!br)br=$I`5br`F!s.@Q`T)^e^pbr`G"
+"'`Imr(0,0,br)}$I=0`Cmr`0$8,q,$lid,ta,u`1,dc=s.dc,t1=s.`N,t2=s.`N^j,tb=s.`NBase,p='.sc',ns=s.`Y`r$O,un=s.cls(u?u:(ns?ns:s.fun)),r`B,l,imn=^pi_'+(un),im,b,e`5!rs`Ft1`Ft2^7ssl)t1=t2^Q@z!tb)tb='$S`5dc)"
+"dc=@Tdc)`9;`edc='d1'`5tb`U$S`Fdc`Ud1$p12';`6dc`Ud2$p22';p`l}t1#8+'.'+dc+'.'+p+tb}rs=$B'+(@8?'s'`k'://'+t1+'/b/ss/'+^5+'/'+(s.#2?'5.1':'1'$cH.20.2/'+$8+'?AQB=1&ndh=1'+(q?q`k'&AQE=1'`5^g@Us.^n`F`S>5."
+"5)rs=^s$l4095);`ers=^s$l2047)`mid^zbr(id,rs);#1}`ms.d.images&&`S>=3^a!s.^m||`S>=7)^a@c<0||`S>=6.1)`F!s.rc)s.rc`B`5!^X){^X=1`5!s.rl)s.rl`B;@An]`K;s`Xout('@z`y`gl)`y`gl['+s^Zn+']@J)',750)^Ql=@An]`5l)"
+"{r.t=ta;r.u#8;r.r=rs;l[l`8]=r;`3''}imn+=@x^X;^X++}im=`H[imn]`5!im)im=`H[im$4new Image;im^xl=0;im.o^M`7'e`G^O^xl=1;`Pwd=`y,s`5wd`gl){s=wd`gl['+s^Zn+'];s@J`Inrs--`5!$J)`Rm(\"rr\")}')`5!$J^znrs=1;`Rm("
+"'rs')}`e$J++;im@P=rs`5rs`4$F=@H0^a!ta||ta`U_self$ba`U_top'||(`H.@4$wa==`H.@4)#Ub=e`i;^0!im^x$ve.g`X()-b.g`X()<500)e`i}`3''}`3'<im'+'g sr'+'c=@urs+'\" width=1 #3=1 border=0 alt=\"\">'`Cgg`0v`1`5!`H["
+"^p#c)`H[^p#c`l;`3`H[^p#c`Cglf`0t,a`Ft`20,2)`U$s`22);`Ps=^O,v=s.gg(t)`5v)s#Yv`Cgl`0v`1`5s.pg)`bv,`G,'gl@V0)`Chav`0`1,qs`l,fv=s.`Q@gVa$lfe=s.`Q@g^Ys,mn,i`5$E){mn=$E`20,1)`E()+$E`21)`5$K){fv=$K.^LVars"
+";fe=$K.^L^Ys}}fv=fv?fv+`G+^R+`G+^R2:'';`n0;i<@n`8^3`Pk=@n[i],v=s[k],b=k`20,4),x=k`24),n=^Jx),q=k`5v&&k$Y`Q`r'&&k$Y`Q^2'`F$E||s.@M||^G`Ffv^a`G+fv+`G)`4`G+k+`G)<0)v`l`5k`U#4'&&fe)v=s.fs(v,fe)`mv`Fk`U"
+"^U`JD';`6k`U`YID`Jvid';`6k`U^P^Tg'^6`6k`U`a^Tr'^6`6k`Uvmk'||k`U`Y@S`Jvmt';`6k`U`D^Tvmf'`5@8^7`D^j)v`l}`6k`U`D^j^Tvmf'`5!@8^7`D)v`l}`6k`U@L^Tce'`5v`E()`UAUTO')v='ISO8859-1';`6s.em==2)v='UTF-8'}`6k`U"
+"`Y`r$O`Jns';`6k`Uc`L`Jcdp';`6k`U`z@E`Jcl';`6k`U^w`Jvvp';`6k`U@O`Jcc';`6k`U$j`Jch';`6k`U#E`oID`Jxact';`6k`U$9`Jv0';`6k`U^c`Js';`6k`U^C`Jc';`6k`U`t^u`Jj';`6k`U`p`Jv';`6k`U`z@G`Jk';`6k`U^9@B`Jbw';`6k`"
+"U^9^k`Jbh';`6k`U@d`o^2`Jct';`6k`U@5`Jhp';`6k`Up^S`Jp';`6#Fx)`Fb`Uprop`Jc$g`6b`UeVar`Jv$g`6b`Ulist`Jl$g`6b`Uhier^Th'+n^6`mv)qs+='&'+q+'$u(k`20,3)$Ypev'?@a(v):v$X`3qs`Cltdf`0t,h@wt?t`9$6`9:'';`Pqi=h`"
+"4'?^Vh=qi>=0?h`20,qi):h`5t&&h`2h`8-(t`8#f`U.'+t)`31;`30`Cltef`0t,h@wt?t`9$6`9:''`5t&&h`4t)>=0)`31;`30`Clt`0h`1,lft=s.`QDow^MFile^2s,lef=s.`QEx`s,$A=s.`QIn`s;$A=$A?$A:`H`M^E@4;h=h`9`5s.^LDow^MLinks&"
+"&lft&&`blft,`G#Id@Vh))`3'd'`5s.^L@K&&h`20,1)$Y# '^alef||$A)^a!lef||`blef,`G#Ie@Vh))^a!$A#V`b$A,`G#Ie@Vh)))`3'e';`3''`Clc`7'e`G`Ab=^f(^O,\"`q\"`I@M=$C^O`It(`I@M=0`5b)`3^O$x`3@i'`Ibc`7'e`G`Af,^l`5s.d"
+"^7d.all^7d.all.cppXYctnr)#1;^G=e@P`V?e@P`V:e$m;^l`7\"s\",\"`Pe@6@z^G^a^G.tag`r||^G^A`V||^G^ANode))s.t()`d}\");^l(s`Ieo=0'`Ioh`0o`1,l=`H`M,h=o^q?o^q:'',i,j,k,p;i=h`4':^Vj=h`4'?^Vk=h`4'/')`5h^ai<0||("
+"j>=0&&i>j)||(k>=0&&i>k))$eo`h$5`h`8>1?o`h:(l`h?l`h:'^Vi=l.path@4`f'/^Vh=(p?p+'//'`k(o^E?o^E:(l^E?l^E#e)+(h`20,1)$Y/'?l.path@4`20,i<0?0:i$c'`kh}`3h`Cot`0o){`Pt=o.tag`r;t=t$w`E?t`E$f`5t`USHAPE')t`l`5"
+"t`Ft`UINPUT'&&@C&&@C`E)t=@C`E();`6!t$5^q)t='A';}`3t`Coid`0o`1,^K,p,c,n`l,x=0`5t@U^8$eo`h;c=o.`q`5o^q^at`UA$b`UAREA')^a!c#Vp||p`9`4'`t#S0))n$2`6c@v^Fs.rep(^Fs.rep@Tc,\"\\r@y\"\\n@y\"\\t@y' `G^Vx=2}`"
+"6$n^at`UINPUT$b`USUBMIT')@v$n;x=3}`6o@P$w`UIMAGE')n=o@P`5@t^8=^sn@7;^8t=x}}`3^8`Crqf`0t,un`1,e=t`4$Z,u=e>=0?`G+t`20,e)+`G:'';`3u&&u`4`G+un+`G)>=0?@lt`2e#f:''`Crq`0un`1,c#8`4`G),v=^d^psq'),q`l`5c<0)"
+"`3`bv,'&`Grq@Vun);`3`bun,`G,'rq',0)`Csqp`0t,a`1,e=t`4$Z,q=e<0?'':@lt`2e+1)`Isqq[q]`l`5e>=0)`bt`20,e),`G@r`30`Csqs`0un,q`1;^Iu[u$4q;`30`Csq`0q`1,k=^psq',v=^dk),x,c=0;^Iq`B;^Iu`B;^Iq[q]`l;`bv,'&`Gsqp"
+"',0`Ipt(^5,`G@rv`l^i^Iu`W)^Iq[^Iu[x]]+=(^Iq[^Iu[x]]?`G`kx^i^Iq`W^7sqq[x]^ax==q||c<2#Uv+=(v#W'`k^Iq[x]+'`Zx);c++}`3^ek,v,0)`Cwdl`7'e`G`Ar=@i,b=^f(`H,\"o^M\"),i,o,oc`5b)r=^O$x`n0;i<s.d.`Qs`8^3o=s.d.`"
+"Qs[i];oc=o.`q?\"\"+o.`q:\"\"`5(oc`4$P<0||oc`4\"^xoc(\")>=0)$5c`4$q<0)^f(o,\"`q\",0,s.lc);}`3r^V`Hs`0`1`5`S>3^a!^g#Vs.^n||`S#d`Fs.b^7$R^Y)s.$R^Y('`q#N);`6s.b^7b.add^Y$T)s.b.add^Y$T('click#N,false);`"
+"e^f(`H,'o^M',0,`Hl)}`Cvs`0x`1,v=s.`Y^W,g=s.`Y^W#Pk=^pvsn_'+^5+(g?@xg#e,n=^dk),e`i,y=e@R$U);e.set$Uy+10$31900:0))`5v){v*=$k`5!n`F!^ek,x,e))`30;n=x`mn%$k00>v)`30}`31`Cdyasmf`0t,m`Ft&&m&&m`4t)>=0)`31;"
+"`30`Cdyasf`0t,m`1,i=t?t`4$Z:-1,n,x`5i>=0&&m){`Pn=t`20,i),x=t`2i+1)`5`bx,`G,'dyasm@Vm))`3n}`30`Cuns`0`1,x=s.`OSele`o,l=s.`OList,m=s.`OM#D,n,i;^5=^5`9`5x&&l`F!m)m=`H`M^E`5!m.toLowerCase)m`l+m;l=l`9;m"
+"=m`9;n=`bl,';`Gdyas@Vm)`5n)^5=n}i=^5`4`G`Ifun=i<0?^5:^5`20,i)`Csa`0un`1;^5#8`5!@9)@9#8;`6(`G+@9+`G)`4`G+un+`G)<0)@9+=`G+un;^5s()`Cm_i`0n,a`1,m,f=n`20,1),r,l,i`5!`Rl)`Rl`B`5!`Rnl)`Rnl`K;m=`Rl[n]`5!a"
+"&&m&&#G@Um^Z)`Ra(n)`5!m){m`B,m._c=^pm';m^Zn=`H`gn;m^Zl=s^Zl;m^Zl[m^Z$4m;`H`gn++;m.s=s;m._n=n;$G`K('_c`G_in`G_il`G_i`G_e`G_d`G_dl`Gs`Gn`G_r`G_g`G_g1`G_t`G_t1`G_x`G_x1`G_rs`G_rr`G_l'`Im_l[$4m;`Rnl[`R"
+"nl`8]=n}`6m._r@Um._m){r=m._r;r._m=m;l=$G;`n0;i<l`8;i#T@zm[l[i]])r[l[i]]=m[l[i]];r^Zl[r^Z$4r;m=`Rl[$4r`mf==f`E())s[$4m;`3m`Cm_a`7'n`Gg`Ge`G@z!g)g=^h;`Ac=s[g@k,m,x,f=0`5!c)c=`H[\"s_\"+g@k`5c&&s_d)s[g"
+"]`7\"s\",s_ft(s_d(c)));x=s[g]`5!x)x=`H[\\'s_\\'+g]`5!x)x=`H[g];m=`Ri(n,1)`5x^a!m^Z||g!=^h#Um^Z=f=1`5(\"\"+x)`4\"fun`o\")>=0)x(s);`e`Rm(\"x\",n,x,e)}m=`Ri(n,1)`5@ol)@ol=@o=0;`ut();`3f'`Im_m`0t,n,d,e"
+"@w@xt;`Ps=^O,i,x,m,f=@xt,r=0,u`5`R$v`Rnl)`n0;i<`Rnl`8^3x=`Rnl[i]`5!n||x==@tm=`Ri(x);u=m[t]`5u`F@Tu)`4#B`o@H0`Fd&&e)@Xd,e);`6d)@Xd);`e@X)}`mu)r=1;u=m[t+1]`5u@Um[f]`F@Tu)`4#B`o@H0`Fd&&e)@1d,e);`6d)@1"
+"d);`e@1)}}m[f]=1`5u)r=1}}`3r`Cm_ll`0`1,g=`Rdl,i,o`5g)`n0;i<g`8^3o=g[i]`5o)s.^b(o.n,o.u,o.d,o.l,o.e,$ag#Z0}`C^b`0n,u,d,l,e,ln`1,m=0,i,g,o=0#M,c=s.h?s.h:s.b,b,^l`5@ti=n`4':')`5i>=0){g=n`2i+$an=n`20,i"
+")}`eg=^h;m=`Ri(n)`m(l||(n@U`Ra(n,g)))&&u^7d&&c^7$V`V`Fd){@o=1;@ol=1`mln`F@8)u=^Fu,$B:`Ghttps:^Vi=^ps:'+s^Zn+':@I:'+g;b='`Ao=s.d@R`VById(@ui+'\")`5s$5`F!o.$v`H.'+g+'){o.l=1`5o.@2o.i);o.i=0;`Ra(\"@I"
+"\",@ug+'@u(e?',@ue+'\"'`k')}';f2=b+'o.c++`5!`c)`c=250`5!o.l$5.c<(`c*2)/$k)o.i=s`Xout(o.f2@7}';f1`7'e',b+'}^V^l`7's`Gc`Gi`Gu`Gf1`Gf2`G`Pe,o=0@6o=s.$V`V(\"script\")`5o){@C=\"text/`t\"$7id=i;o.defer=@"
+"i;o.o^M=o.onreadystatechange=f1;o.f2=f2;o.l=0;'`k'o@P=u;c.appendChild(o)$7c=0;o.i=s`Xout(f2@7'`k'}`do=0}`3o^Vo=^l(s,c,i,u#M)^Qo`B;o.n=n+':'+g;o.u=u;o.d=d;o.l=l;o.e=e;g=`Rdl`5!g)g=`Rdl`K;i=0;^0i<g`8"
+"&&g[i])i++;g#Zo}}`6@tm=`Ri(n);#G=1}`3m`Cvo1`0t,a`Fa[t]||$h)^O#Ya[t]`Cvo2`0t,a`F#g{a#Y^O[t]`5#g$h=1}`Cdlt`7'`Ad`i,i,vo,f=0`5`ul)`n0;i<`ul`8^3vo=`ul[i]`5vo`F!`Rm(\"d\")||d.g`X()-$Q>=`c){`ul#Z0;s.t($0"
+"}`ef=1}`m`u@2`ui`Idli=0`5f`F!`ui)`ui=s`Xout(`ut,`c)}`e`ul=0'`Idl`0vo`1,d`i`5!$0vo`B;`b^1,`G$L2',$0;$Q=d.g`X()`5!`ul)`ul`K;`ul[`ul`8]=vo`5!`c)`c=250;`ut()`Ct`0vo,id`1,trk=1,tm`i,sed=Math&&@Z#5?@Z#C@"
+"Z#5()*$k00000000000):#J`X(),$8='s'+@Z#C#J`X()/10800000)%10+sed,y=tm@R$U),vt=tm@RDate($c^HMonth($c'$3y+1900:y)+' ^HHour$d:^HMinute$d:^HSecond$d ^HDay()+#b#J`XzoneO$D(),^l,^4=s.g^4(),ta`l,q`l,qs`l,#6"
+"`l,vb`B#L^1`Iuns(`Im_ll()`5!s.td){`Ptl=^4`M,a,o,i,x`l,c`l,v`l,p`l,bw`l,bh`l,^N0',k=^e^pcc`G@i',0@0,hp`l,ct`l,pn=0,ps`5^D&&^D.prototype){^N1'`5j.m#D){^N2'`5tm.setUTCDate){^N3'`5^g^7^n&&`S#d^N4'`5pn."
+"toPrecisio@t^N5';a`K`5a.forEach){^N6';i=0;o`B;^l`7'o`G`Pe,i=0@6i=new Iterator(o)`d}`3i^Vi=^l(o)`5i&&i.next)^N7'}}}}`m`S>=4)x=^rwidth+'x'+^r#3`5s.isns||s.^m`F`S>=3$i`p(@0`5`S>=4){c=^rpixelDepth;bw=`"
+"H#K@B;bh=`H#K^k}}$M=s.n.p^S}`6^g`F`S>=4$i`p(@0;c=^r^C`5`S#d{bw=s.d.^B`V.o$D@B;bh=s.d.^B`V.o$D^k`5!s.^n^7b){^l`7's`Gtl`G`Pe,hp=0`vh$t\");hp=s.b.isH$t(tl)?\"Y\":\"N\"`d}`3hp^Vhp=^l(s,tl);^l`7's`G`Pe,"
+"ct=0`vclientCaps\");ct=s.b.@d`o^2`d}`3ct^Vct=^l(s$X`er`l`m$M)^0pn<$M`8&&pn<30){ps=^s$M[pn].@4@7#X`5p`4ps)<0)p+=ps;pn++}s.^c=x;s.^C=c;s.`t^u=j;s.`p=v;s.`z@G=k;s.^9@B=bw;s.^9^k=bh;s.@d`o^2=ct;s.@5=hp"
+";s.p^S=p;s.td=1`m$0{`b^1,`G$L2',vb`Ipt(^1,`G$L1',$0`ms.useP^S)s.doP^S(s);`Pl=`H`M,r=^4.^B.`a`5!s.^P)s.^P=l^q?l^q:l`5!s.`a@Us._1_`a^z`a=r;s._1_`a=1`m(vo&&$Q)#V`Rm('d'#U`Rm('g')`5s.@M||^G){`Po=^G?^G:"
+"s.@M`5!o)`3'';`Pp=s.#O`r,w=1,^K,@q,x=^8t,h,l,i,oc`5^G$5==^G){^0o@Un$w$YBODY'){o=o^A`V?o^A`V:o^ANode`5!o)`3'';^K;@q;x=^8t}oc=o.`q?''+o.`q:''`5(oc`4$P>=0$5c`4\"^xoc(\")<0)||oc`4$q>=0)`3''}ta=n?o$m:1;"
+"h$2i=h`4'?^Vh=s.`Q@s^D||i<0?h:h`20,i);l=s.`Q`r;t=s.`Q^2?s.`Q^2`9:s.lt(h)`5t^ah||l))q+=$F=@M_'+(t`Ud$b`Ue'?@a(t):'o')+(h?$Fv1`Zh)`k(l?$Fv2`Zl):'^V`etrk=0`5s.^L@e`F!p$es.^P;w=0}^K;i=o.sourceIndex`5@F"
+"')@v@F^Vx=1;i=1`mp&&n$w)qs='&pid`Z^sp,255))+(w#Wpidt$uw`k'&oid`Z^sn@7)+(x#Woidt$ux`k'&ot`Zt)+(i#Woi$ui#e}`m!trk@Uqs)`3'';$1=s.vs(sed)`5trk`F$1)#6=s.mr($8,(vt#Wt`Zvt)`ks.hav()+q+(qs?qs:s.rq(^5)),0,i"
+"d,ta);qs`l;`Rm('t')`5s.p_r)s.p_r(`I`a`l}^I(qs);^Q`u($0;`m$0`b^1,`G$L1',vb`I@M=^G=s.`Q`r=s.`Q^2=`H`j''`5s.pg)`H^x@M=`H^xeo=`H^x`Q`r=`H^x`Q^2`l`5!id@Us.tc^ztc=1;s.flush`T()}`3#6`Ctl`0o,t,n,vo`1;s.@M="
+"$Co`I`Q^2=t;s.`Q`r=n;s.t($0}`5pg){`H^xco`0o){`P^t\"_\",1,$a`3$Co)`Cwd^xgs`0u@t`P^tun,1,$a`3s.t()`Cwd^xdc`0u@t`P^tun,$a`3s.t()}}@8=(`H`M`h`9`4$Bs@H0`Id=^B;s.b=s.d.body`5s.d@R`V#R`r^zh=s.d@R`V#R`r('H"
+"EAD')`5s.h)s.h=s.h[0]}s.n=navigator;s.u=s.n.userAgent;@c=s.u`4'N$r6/^V`Papn$W`r,v$W^u,ie=v`4#A'),o=s.u`4'@Y '),i`5v`4'@Y@H0||o>0)apn='@Y';^g$N`UMicrosoft Internet Explorer'`Iisns$N`UN$r'`I^m$N`U@Y'"
+"`I^n=(s.u`4'Mac@H0)`5o>0)`S`ws.u`2o+6));`6ie>0){`S=^Ji=v`2ie+5))`5`S>3)`S`wi)}`6@c>0)`S`ws.u`2@c+10));`e`S`wv`Iem=0`5^D#Q^v){i=^o^D#Q^v(256))`E(`Iem=(i`U%C4%80'?2:(i`U%U0$k'?1:0))}s.sa(un`Ivl_l='^U"
+",`YID,vmk,`Y@S,`D,`D^j,ppu,@L,`Y`r$O,c`L,`z@E,#O`r,^P,`a,@O$zl@p^R,`G`Ivl_t=^R+',^w,$j,server,#O^2,#E`oID,purchaseID,$9,state,zip,#4,products,`Q`r,`Q^2';@j`Pn=1;n<51;n#T@D+=',prop@I,eVar@I,hier@I,l"
+"ist$g^R2=',tnt,pe#91#92#93,^c,^C,`t^u,`p,`z@G,^9@B,^9^k,@d`o^2,@5,p^S';@D+=^R2;@n@p@D,`G`Ivl_g=@D+',`N,`N^j,`NBase,fpC`L,@Q`T,#2,`Y^W,`Y^W#P`OSele`o,`OList,`OM#D,^LDow^MLinks,^L@K,^L@e,`Q@s^D,`QDow"
+"^MFile^2s,`QEx`s,`QIn`s,`Q@gVa$l`Q@g^Ys,`Q`rs,@M,eo,_1_`a$zg@p^1,`G`Ipg=pg#L^1)`5!ss)`Hs()",
w=window,l=w.s_c_il,n=navigator,u=n.userAgent,v=n.appVersion,e=v.indexOf('MSIE '),m=u.indexOf('Netscape6/'),a,i,s;if(un){un=un.toLowerCase();if(l)for(i=0;i<l.length;i++){s=l[i];if(!s._c||s._c=='s_c'){if(s.oun==un)return s;else if(s.fs&&s.sa&&s.fs(s.oun,un)){s.sa(un);return s}}}}w.s_an='0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
w.s_sp=new Function("x","d","var a=new Array,i=0,j;if(x){if(x.split)a=x.split(d);else if(!d)for(i=0;i<x.length;i++)a[a.length]=x.substring(i,i+1);else while(i>=0){j=x.indexOf(d,i);a[a.length]=x.subst"
+"ring(i,j<0?x.length:j);i=j;if(i>=0)i+=d.length}}return a");
w.s_jn=new Function("a","d","var x='',i,j=a.length;if(a&&j>0){x=a[0];if(j>1){if(a.join)x=a.join(d);else for(i=1;i<j;i++)x+=d+a[i]}}return x");
w.s_rep=new Function("x","o","n","return s_jn(s_sp(x,o),n)");
w.s_d=new Function("x","var t='`^@$#',l=s_an,l2=new Object,x2,d,b=0,k,i=x.lastIndexOf('~~'),j,v,w;if(i>0){d=x.substring(0,i);x=x.substring(i+2);l=s_sp(l,'');for(i=0;i<62;i++)l2[l[i]]=i;t=s_sp(t,'');d"
+"=s_sp(d,'~');i=0;while(i<5){v=0;if(x.indexOf(t[i])>=0) {x2=s_sp(x,t[i]);for(j=1;j<x2.length;j++){k=x2[j].substring(0,1);w=t[i]+k;if(k!=' '){v=1;w=d[b+l2[k]]}x2[j]=w+x2[j].substring(1)}}if(v)x=s_jn("
+"x2,'');else{w=t[i]+' ';if(x.indexOf(w)>=0)x=s_rep(x,w,t[i]);i++;b+=62}}}return x");
w.s_fe=new Function("c","return s_rep(s_rep(s_rep(c,'\\\\','\\\\\\\\'),'\"','\\\\\"'),\"\\n\",\"\\\\n\")");
w.s_fa=new Function("f","var s=f.indexOf('(')+1,e=f.indexOf(')'),a='',c;while(s>=0&&s<e){c=f.substring(s,s+1);if(c==',')a+='\",\"';else if((\"\\n\\r\\t \").indexOf(c)<0)a+=c;s++}return a?'\"'+a+'\"':"
+"a");
w.s_ft=new Function("c","c+='';var s,e,o,a,d,q,f,h,x;s=c.indexOf('=function(');while(s>=0){s++;d=1;q='';x=0;f=c.substring(s);a=s_fa(f);e=o=c.indexOf('{',s);e++;while(d>0){h=c.substring(e,e+1);if(q){i"
+"f(h==q&&!x)q='';if(h=='\\\\')x=x?0:1;else x=0}else{if(h=='\"'||h==\"'\")q=h;if(h=='{')d++;if(h=='}')d--}if(d>0)e++}c=c.substring(0,s)+'new Function('+(a?a+',':'')+'\"'+s_fe(c.substring(o+1,e))+'\")"
+"'+c.substring(e+1);s=c.indexOf('=function(')}return c;");
c=s_d(c);if(e>0){a=parseInt(i=v.substring(e+5));if(a>3)a=parseFloat(i)}else if(m>0)a=parseFloat(u.substring(m+10));else a=parseFloat(v);if(a>=5&&v.indexOf('Opera')<0&&u.indexOf('Opera')<0){w.s_c=new Function("un","pg","ss","var s=this;"+c);return new s_c(un,pg,ss)}else s=new Function("un","pg","ss","var s=new Object;"+s_ft(c)+";return s");return s(un,pg,ss)}

