function Goto(CountryNo,PageName)
{
var locationURL;
var otherURL;
var URLength;
var yesno;
locationURL="" + window.location + "";
otherURL="" + window.location + "";
URLength=locationURL.length;
if (otherURL.match("Default"))
{
locationURL=(locationURL.lastIndexOf("/"));
}
else
{
locationURL=(locationURL.lastIndexOf("/"));
}
locationURL=otherURL.substring(locationURL,URLength);

if (otherURL.match("info"))
{
	if (PageName=="contactus")
	{
		window.location="contactus.asp?Country="+CountryNo+"&info="+PageName;
	}
	else
	{
		window.location="content.asp?Country="+CountryNo+"&info="+PageName;
	}
}
else
{
window.location="Default.asp?Country="+CountryNo;
}
}