/* Creation date: 29.08.2007 */
/*<script language="JavaScript">*/
/*<!-- Begin*/
closetime = 0; // Close window after __ number of seconds?
// 0 = do not close, anything else = number of seconds

function Start99(URL, WIDTH, HEIGHT) {
windowprops = "left=0,top=0,menubar=no,status=no,scrollbars=yes,width=" + WIDTH + ",height=" + HEIGHT;
preview99 = window.open(URL, "preview99", windowprops);
if (closetime) setTimeout("preview99.close();", closetime*1000);
}

function doPopup99() {
url = "gl_mane1.html";
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("Start99(url, width, height)", delay*100);
}
/*//  End -->*/
/*</script>*/