/* Creation date: 12.07.2005 */
/*<script language="JavaScript">*/
/*<!-- Begin*/
closetime = 0; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds

function Start1(URL, WIDTH, HEIGHT) {
windowprops = "left=0,top=0,menubar=no,status=no,scrollbars=yes,width=" + WIDTH + ",height=" + HEIGHT;
preview1 = window.open(URL, "preview1", windowprops);
if (closetime) setTimeout("preview1.close();", closetime*1000);
}

function doPopup1() {
url = "main.htm";
width = screen.width-7;  // width of window in pixels
height = screen.height-75; // height of window in pixels
delay = 2;    // time in seconds before popup opens
timer = setTimeout("Start1(url, width, height)", delay*100);
}
/*//  End -->*/
/*</script>*/