function CMS_SetLangURL(anchor)
{
	var lswitch = "";
	var qs = document.location.search;

	if(typeof(CMS_TransUrl)!="undefined" && CMS_TransUrl!="") lswitch = CMS_TransUrl;
	else if (typeof(CMS_TransUrlDefault)!="undefined" && CMS_TransUrlDefault!="") lswitch = CMS_TransUrlDefault;

	if(lswitch != "") {
		lswitch = (lswitch.indexOf("//")==-1 ? "//" : "") + lswitch;
		if (lswitch.indexOf("?")==-1){
			lswitch += qs;
		}
		anchor.href = lswitch;
	}	
}

