

<!--


timeout =0;
function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=30,top=30,width=" + (WIDTH+30) + ",height=" + (HEIGHT+30);

text = "<html><head><title>Preview</title></head><body bgcolor='black' oncontextmenu='return false;' ondrag='window.event.returnValue=false;' onblur='window.clipboardData.clearData();'";

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("<script>function closeMe(e){window.close();} document.onclick = closeMe;</script>");
preview.document.write(text);
preview.document.close();

}
//  End -->


