function SwitchLanguage()
{

	var path = window.location.pathname;

	if (path.lastIndexOf("_e.htm") > 0)
		{
		replace = "_g.htm";
		var url = path.substring(0,path.lastIndexOf("_e.htm")) + replace;
		}

	else if (path.lastIndexOf("_g.htm") > 0)
		{
		replace = "_e.htm";
		var url = path.substring(0,path.lastIndexOf("_g.htm")) + replace;
		}
		
		else if (path.lastIndexOf("_e.php") > 0)
		{
		replace = "_g.php";
		var url = path.substring(0,path.lastIndexOf("_e.php")) + replace;
		}
		
		else if (path.lastIndexOf("_g.php") > 0)
		{
		replace = "_e.php";
		var url = path.substring(0,path.lastIndexOf("_g.php")) + replace;
		}



	window.location.href=url;
}