	function null2en(){
var t=location.href,i,a=new Array();
t=t.split("/");
if(t.length>=3){
	if(t[3].length==2)t[3]=((t[3]=="en")?"":"en/"+t[3]);
	else t[3]=((t[3]=="en")?"":"en/"+t[3]);
	a[0]=t[0];
	a[1]=t[1];
	a[2]=t[2];
	for(i=3;i<t.length;i++){
		if(t[i]!="")a[a.length]=t[i]
	}
	a=a.join("/");
	location.href=a;
}else history.back();
}