 function ouvrir(sUrl){
   var newWindow = window.open(sUrl, "newWindow", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=550,height=220"); 
   //passage de focus a la nouvelle fenetre
   newWindow.focus();
 }

 function ouvrir2(sUrl){
   var newWindow = window.open(sUrl, "newWindow", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=550,height=450"); 
   //passage de focus a la nouvelle fenetre
   newWindow.focus();
 }

function OpenCertDetails()
	{
	thewindow = window.open('https://www.thawte.com/cgi/server/certdetails.exe?code=FRMINF1', 'anew', config='height=400,width=450,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=yes');
	}
