// JavaScript Document 

function SetSiteCookie(name,value,fromurl){ //name = c_country

	document.cookie= name + "=" + value + "; path=/;";
	//alert(getCookie('c_country'));
	//alert(document.cookie);
	if (fromurl == 0)
		location.reload();
}

function getCookie(c_name) // now is c_country
{
	if (document.cookie.length>0)
	  {
	  c_start=document.cookie.indexOf(c_name + "=")
	  if (c_start!=-1)
		{ 
		c_start=c_start + c_name.length+1 
		c_end=document.cookie.indexOf(";",c_start)
		if (c_end==-1) c_end=document.cookie.length
		return unescape(document.cookie.substring(c_start,c_end))
		} 
	  }
	return ""
}

function createtopheader(){

var pagelogo = "CF-Top-Logo.png";

	if (navigator.appName == 'Microsoft Internet Explorer') /* IE 6 doesn't support PNG. if it is ie6,use *.jpg */
	{
	   if (navigator.appVersion.match(/6./i)=='6.')
		 pagelogo = "v3logo.jpg";
	}
	   
var strheader = "";
strheader = strheader + "<div id=\"page\" class=\"page\"><div style=\"float:left; width:872px; text-align:left;\">";
strheader = strheader + "<div  class=\"v3logo\"><a href=\"http://www.clickfree.com/index.php\"><img src=\"http://www.clickfree.com/images/" + pagelogo + "\" alt=\"logo\" border=\"0\" /></a></div> ";


storelink = 'http://buy.goclickfree.com';


strheader = strheader + "<div  class=\"topNav\">";
strheader = strheader + "<a href=\"" + storelink + "/orders.asp\" class=\"white_underline\">Order Status</a> | ";
strheader = strheader + "<a href=\"" + storelink + "/myaccount.asp\" class=\"white_underline\">My Account</a> | ";
strheader = strheader + "<a href=\"http://www.clickfree.com/support.php\" class=\"white_underline\">Customer Support</a> | ";
strheader = strheader + "<a href=\"" + storelink + "/help.asp\" class=\"white_underline\"> Account help</a> | ";
strheader = strheader + "<a href=\"" + storelink + "/shoppingcart.asp\" class=\"white_underline\">Cart</a> ";
//strheader = strheader + "| <a href=\"javascript:SetSiteCookie('c_country','ca',0);\" class=\"white_underline\">CA Site</a> |  ";
//strheader = strheader + "<a href=\"javascript:SetSiteCookie('c_country','ca',0);\" class=\"white_underline\">|</a>   ";

//strheader = strheader + "<a href=\"javascript:SetSiteCookie('c_country','us',0);\" class=\"white_underline\">US Site</a>";
strheader = strheader + "</div> ";

strheader = strheader + "<div style=\"float:right; width:133px; margin-top:5px; text-align:right; margin-right:0px; \">";


strheader = strheader + "<a href=\"http://www.clickfree.ca\" onClick=\"pageTracker._setVar('c_country_ca');\"><img src=\"http://www.clickfree.com/images/index/Canada.gif\" width=\"17\" height=\"12\"  style=\"border:0px solid #efefef;\" alt=\"Canada\"/></a> ";

strheader = strheader + "<a href=\"http://client.mcp-international.com/enfinity/Clickfree/welcome-WFS-en_GB-GBP\" target=\"_blank\"><img src=\"http://www.clickfree.com/images/index/UK.gif\" width=\"17\" height=\"12\" style=\"border:0px solid #efefef;\" alt=\"United Kingdom\"/></a> ";
strheader = strheader + "<a href=\"http://client.mcp-international.com/enfinity/Clickfree/welcome-WFS-fr_FR-EUR\" target=\"_blank\"><img src=\"http://www.clickfree.com/images/index/France.gif\" width=\"17\" height=\"12\" style=\"border:0px solid #efefef;\" alt=\"France\"/></a> <a href=\"http://client.mcp-international.com/enfinity/Clickfree/welcome-WFS-nl_BE-EUR\" target=\"_blank\"><img src=\"http://www.clickfree.com/images/index/Italy.gif\" width=\"17\" height=\"12\"  style=\"border:0px solid #efefef;\" alt=\"Italy\"/></a> <a href=\"http://client.mcp-international.com/enfinity/Clickfree/welcome-WFS-de_DE-EUR\" target=\"_blank\"><img src=\"http://www.clickfree.com/images/index/Germany.gif\" width=\"17\" height=\"12\" style=\"border:0px solid #efefef;\" alt=\"Germany\"/></a> <a href=\"http://www.mag-labo.jp/04pc/-clinckfree.html\" target=\"_blank\"><img src=\"http://www.clickfree.com/images/index/Japan.jpg\" width=\"17\" height=\"12\" style=\"border:0px solid #efefef;\" alt=\"japan\"/></a></div>";


//for us and canada site
strheader = strheader + "<div style=\"float:right; width:300px; margin-top:3px; text-align:right; margin-right:0px; color:#fff;font-size:11px; font-weight:bold; \">";

strheader = strheader + "Clickfree U.S.A ";
strheader = strheader + "<img src=\"http://www.clickfree.com/images/index/US.gif\" width=\"17\" height=\"12\" align=\"absmiddle\" style=\"border:0px solid #efefef;\" alt=\"US\"/>";

strheader = strheader + "&nbsp;&nbsp;  |&nbsp;&nbsp; Change Location </div>";

strheader = strheader + "</div>";

document.write(strheader);

}

