function switchLang(l){
	elLang = document.getElementById('lang');
	elLang.value = l;
	frmLang = document.getElementById('langChange');
	frmLang.submit();
/*
	thisLoc = String(document.location);
	thisLoc = thisLoc.split('?');
	thisLoc = thisLoc[0];
	document.location = thisLoc + '?lang=' + l;
*/
}