function OpenWindow(sURL, sName, sFeatures)
	{
		window.open(sURL, sName, sFeatures);
	}
function OpenWin(URL,width,height,nom)
{
	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=no");
}

function OpenWin2(URL,width,height,nom)
{
	window.open(URL,nom,"toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height + ",resizable=yes");
}
function PopCentre(page,largeur,hauteur,options){
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

                   
//Genere automatiquement un login
function loginAuto(theForm) {
var prenomUtil, nomUtil, loginUtil;

if ((theForm.nom.value != "") && (theForm.prenom.value != "")) {
prenomUtil = theForm.prenom.value;
nomUtil = theForm.nom.value;
loginUtil = prenomUtil.substr(0,1) + '.' + nomUtil.replace(/ +/gi, "");
loginUtil = loginUtil.substr(0,12);
theForm.pseudo.value = loginUtil.toLowerCase();
}
else {
window.alert("Veuillez saisir un nom et un prénom au préalable.");
theForm.nom.focus();
     }
}