timeout = 15;
function Start(URL, WIDTH, HEIGHT, TITRE) {
windowprops = "left=100,top="+(screen.height-HEIGHT-100)/2+",width=" + (WIDTH+30) + ",height=" + (HEIGHT+30);

text = "<html><head><title>"+TITRE+"</title></head><body bgcolor='#000000'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";
text += "><script language='Javascript' src='../scripts/interdire_click_droit.js'></script><center><img src='" + URL + "'>";
//if (timeout != 0) text +="<br><font color='#ede7c5'><p>La fenêtre se fermera après " + timeout + " secondes.</p></font>";
text += "</center></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}

// Fin

