<!--
//edit the links as you would with regular html but remeber the '/" changes and follow the examples as a guide

timeout =0; 


function openWindow(URL, WIDTH, HEIGHT) {
windowprops = "left=25,top=25,width=" + (WIDTH+0) + ",height=" + (HEIGHT+0);

text = "<html><head><title>Picture</title></head><body background='back99.gif'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";

text += "><center><img src='" + URL + "'>";

if (timeout != 0) text +="<br><font face='arial, helvetica' size='-1'>Preview closes after " + timeout + " seconds.</font>";

text += "</center></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}
//-->
