function Start(URL, WIDTH, HEIGHT, TITLE) { timeout = 0; // Close window after __ number of seconds? 0 = do not close, anything else = number of seconds x = (screen.width-WIDTH)/2; y = (screen.height-(HEIGHT+110))/2; windowprops = "left=" + x + ",top=" + y + ",scrollbars=no,resizable=yes,width=" + WIDTH + ",height=" + HEIGHT; text = "" + TITLE ; if (timeout != 0) text +=" - closes after " + timeout + " sec."; text +=""; text +=""; text += "

close window"; text += ""; preview = window.open("", "preview", windowprops); preview.moveTo(x,y); preview.window.focus(); preview.document.open(); preview.document.write(text); preview.document.close(); }