function menu(side,GOwhere)
{
	var goURL
	goURL = location.href
	document.frmMenu.MenuSide.value = side
	
	if (GOwhere == "")
	{
		if(goURL.indexOf(".asp") != -1)
		{
			document.frmMenu.action = location.href;
//			alert(document.frmMenu.action)
			
		}
		else
		{
			if (goURL.indexOf(".com/") != -1)
			{
				document.frmMenu.action = goURL + "default.asp";
//				alert(document.frmMenu.action)
			}
			else
			{
				document.frmMenu.action = goURL + "/default.asp";	
//				alert(document.frmMenu.action)	
			}
		}
	}
	else 
	{
		document.frmMenu.action = GOwhere;
	}
//	alert(document.frmMenu.action)
	document.frmMenu.method = "post"
	document.frmMenu.submit()
}
