function credit(){
	window.open("./a3iscredit.htm", "pop", "width=380,height=253,menubar=no,directories=no,toolbar=no,status=no,resizable=no,scrollbars=no");
}

function infoleg(){
	window.open("./InfosLegales.aspx", "pop2", "width=750,height=500,menubar=no,directories=no,toolbar=no,status=no,resizable=yes,scrollbars=yes");
}

function setlang(sel){
//	alert(location.href);

	var myexp=/[?&]SessLang=(en|fr)/gi;
	var	typepage = "aspx";

	var h = unescape(location.href).replace(myexp,"");// Clean Url
	var len = h.length - typepage.length;
	var delim, sess = "SessLang=";
	if(len == h.lastIndexOf(typepage))
	{
		//	alert("no var");
		delim = "?";
	}
	else
	{
		//	alert("+ var");
		delim = "&";
	}
	//	alert(h + delim + sess + sel[sel.selectedIndex].value);
	location.href = h + delim + sess + sel[sel.selectedIndex].value;
}
