function ReplaceLang(Obj,Lng) {
	var path = Obj.location.href;
	Obj.location.href = path.replace(/\/de\/|\/it\//,"/"+Lng+"/");
}

function xlate(Lng) {
	ReplaceLang(this,Lng)
	//if(parent.containerFrame) {
		//ReplaceLang(parent.topFrame,Lng);
		//ReplaceLang(parent.containerFrame,Lng);
	//}
}
