// redimensionnement fenetre
function checksize() { 
	ww=500; 
	hh=600; 
	sw=Math.round((screen.availWidth-ww)/2);	
	sh=Math.round((screen.availHeight-hh)/2);
	window.resizeTo(ww,hh); 
	window.moveTo(sw,sh); 
	window.focus();
}

// Espace client
function ouvrirEspaceClient(){
	w=open("mon-compte-connexion.php","Espace_Client","width=400,height=400,toolbar=no,scrollbars=yes,resizable=yes,top=0,left=0");
	w.document.close();
}