if (typeof MmoImage == 'undefined') { var MmoImage = "" ;} function PopUp_image(image,titre,largeur,hauteur,SecondesTimeOut) { if( image != MmoImage ){ MmoImage = image; // Options d'ouverture if(largeur<=0) { largeur=400; } if(hauteur<=0) { hauteur=300; } buf = "border=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0"; buf = buf + ",width="; buf = buf + largeur ; buf = buf + ",height="; buf = buf + hauteur; buf = buf + ",left=0,top=0"; myWindow = window.open("", "Preview", buf); myWindow.document.open(); myWindow.document.write(""); myWindow.document.write(titre); myWindow.document.write(""); myWindow.document.write(""); myWindow.document.write(""); // myWindow.document.write(""); // myWindow.document.write("
"); myWindow.document.write(""); // myWindow.document.write("
"); // myWindow.document.write("
"); myWindow.document.write(""); myWindow.document.close(); myWindow.window.focus(); this.focus(); if(SecondesTimeOut > 0){ TimeOut( myWindow, SecondesTimeOut ); } } } function TimeOut( fenetre, secondes ) { var t = secondes * 1000; fenetre.document.write(''); }