/**
 * @author e-nor
 */
function land(ref, target)
{
	switch (ref){
	
	case "adwords":
	alert("Enable Auto-Tagging :)");
	break;
	
	case "yahoo":
	alert("Website URL: http://www.store.com/\nCampaign Source: yahoo\nCampaign Medium: cpc\nCampaign Term: {OVKey}\nCampaign Name: Mother's Day 2010");
	break;
	
	case "bing":
	alert("Website URL: http://www.store.com/\nCampaign Source: bing\nCampaign Medium: cpc\nCampaign Term: {QueryString}\nCampaign Name: Mother's Day 2010");
	break;
	
	case "email":
	alert("Website URL: http://www.store.com/\nCampaign Source: newsletter-april\nCampaign Medium: email\nCampaign Name: Mother's Day 2010");
	break;
	
	case "banner":
	alert("Website URL: http://www.store.com/\nCampaign Source: oprah.com\nCampaign Medium: banner\nCampaign Name: Mother's Day 2010");
	break;
	
	case "affiliate":
	alert("Website URL: http://www.store.com/\nCampaign Source: domain.com\nCampaign Medium: affiliate\nCampaign Name: Mother's Day 2010");
	break;	

	case "press":
	alert("Website URL: http://www.store.com/\nCampaign Source: domain.com\nCampaign Medium: press release\nCampaign Name: Mother's Day 2010");
	break;	
	
	case "facebook":
	alert("Website URL: http://www.store.com/\nCampaign Source: facebook/\nCampaign Medium: social media\nCampaign Name: Mother's Day 2010");
	break;	
	
	
	case "twitter":
	alert("Website URL: http://www.store.com/\nCampaign Source: twitter\nCampaign Medium: social media\nCampaign Name: Mother's Day 2010");
	break;	
	
	case "youtube":
	alert("Website URL: http://www.store.com/\nCampaign Source: youtube\nCampaign Medium: social media\nCampaign Name: Mother's Day 2010");
	break;	
	
	case "newspaper":
	alert("Website URL: http://www.store.com/mother\nCampaign Source: usa-today\nCampaign Medium: newspaper\nCampaign Name: Mother's Day 2010");
	break;	

	case "tv":
	alert("Website URL: http://www.store.com/mother\nCampaign Source: Life-time\nCampaign Medium: tv\nCampaign Name: Mother's Day 2010");
	break;	
	}	
}
function jump(menu)
{
ref=menu.choice.options[menu.choice.selectedIndex].value;
splitc=ref.lastIndexOf("*");
target="";
if (splitc!=-1)
{loc=ref.substring(0,splitc);
target=ref.substring(splitc+1,1000);}
else {loc=ref; target="_self";};
if (ref != "") {land(loc,target);}
}

