timeout =0; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds
function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=0,top=0,width=" + (WIDTH) + ",height=" + (HEIGHT+20);
text = "
Medical Websites - iHealthSpot - Advancing Online Medicine
Copyright © 2006 iHealthSpot, Inc. ";
if (timeout != 0) text +="Photo Viewer " + timeout + " seconds.";
text += " ";
preview = window.open("", "preview", windowprops, scrollbar="no");
preview.document.open();
preview.document.write(text);
preview.document.close();
}