timeout =30;

function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=50,top=50,width=" + (WIDTH+100) + ",height=" + (HEIGHT+100);

text = "<html><head><title>Missgien's Malta Experience</title></head><body background='../pix/muurtje.jpg'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\""; text += "><center><img src='" + URL + "'>";

if (timeout != 0) text +="<br><br><font face='verdana' size='-1' color='#ffffff'><b>This window closes after " + timeout + " seconds.</b></font>"; text += "</center></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}
