﻿//中英文网址切换
//－－－－－－－代码开始，以下别改－－－－－－－
function toNewUrl(str)
{
	str=window.location.href;
	//str="http://163.com/ede_en.asp?asdfas=kjadf&fdf=23423"
	if(str.toLowerCase().indexOf("_en")>1)
	{
	str=str.replace("_en","_cn");
	window.location.href(str);
	}
	else if(str.toLowerCase().indexOf("_cn")>1)
	{
	str=str.replace("_cn","_en");
	window.location.href(str);
	}
}

var en2cn_Obj=document.getElementById("en2cn")

if (en2cn_Obj)
{
	with(en2cn_Obj)
	{
		if(typeof(document.all)!="object") 	//非IE浏览器
		{
			href="javascript:toNewUrl()"
		}
		else
		{
			href="#";
			onclick= new Function("toNewUrl();return false")
		}
	}
}


 