timeout =10; // Close after 

function Start(URL, WIDTH, HEIGHT) { 
windowprops = "width=" + WIDTH + ",height=" + HEIGHT; 
text = "<html><head><title>Foto</title></head><body bgcolor='white' style='margin: 0 0 0 0'";
if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\""; 
text += "><center><img src='" + URL + "'>"; 

if (timeout != 10) text +="<br><font face='arial, helvetica' size='-1'>Preview closes after " + timeout + " seconds.</font>"; 
text += "</center></body></html>"; 
preview = window.open("", "", windowprops); 
preview.document.open(); 
preview.document.write(text); 
preview.document.close(); 
} 
