<!--
function CountryOnChange()
	{
	CurrentForm.submit();
	}
	
function LanguageOnChange()
	{
	CurrentForm.submit();
	}
	
function updateCountryCookie(CID)
	{
	 var navCookie = new Cookie(document, "countryselect", 10000, "/");
	 CID = (CID==32)?1:CID;  // United States is 1 and 32. Coerce it to 1.
     navCookie.country = (CID); // Update the navCookie instance.
     navCookie.store();         // set the cookie on the users machine.
	}
	
function noOnChange()
	{
	//Can be set for any drop down to be the on change if don't 
	//want any onchange...
	}
//-->