<!--//=====================================================================================// *** POPUP ***//-------------------------------------------------------------------------------------var popUpWin=0;//-------------------------------------------------------------------------------------// *** Popup ***function popUpWindow(URLStr, left, top, width, height) {	optwin='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes';	//if((popUpWin) && (!popUpWin.closed)) popUpWin.close();	popUpWin = open(URLStr, 'popUpWin','width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+','+optwin);	popUpWin.moveTo(left,top);	popUpWin.resizeTo(width,height);	//popUpWin.focus();}//-------------------------------------------------------------------------------------// *** Popup centree ***function popUpWindowC(URLStr ,width , height) {	optwin='toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes';	var left = (screen.width-width)/2;	var top = (screen.height-height)/2;	//if((popUpWin) && (!popUpWin.closed)) popUpWin.close();	popUpWin = window.open(URLStr,'popUpWin','top='+top+',left='+left+',width='+width+',height='+height+','+optwin);	popUpWin.moveTo(left,top);	popUpWin.resizeTo(width,height);	//popUpWin.focus();}//-------------------------------------------------------------------------------------// *** Fermeture popup ***function quit() {	if((popUpWin) && (!popUpWin.closed)) {		popUpWin.close();	}	 //alert ("Au revoir !\n A bientot...");}//-------------------------------------------------------------------------------------//-->