<!---   delayed  pop up window script--><!-- Beginclosetime = 0; // Close window after __ number of seconds?// 0 = do not close, anything else = number of secondsfunction Start(URL, WIDTH, HEIGHT) {windowprops = "left=300,top=100,width=" + WIDTH + ",height=" + HEIGHT;preview = window.open(URL, "preview", windowprops);if (closetime) setTimeout("preview.close();", closetime*1000);}function doPopup() {url = "newwindow.html";width = 400;  // width of window in pixelsheight = 410; // height of window in pixelsdelay = 3;    // time in seconds before popup openstimer = setTimeout("Start(url, width, height)", delay*1000);}//  End --><!--- pop up window script-->// (C) 2001 www.CodeLifter.com// http://www.codelifter.com// Free for all users, but leave in this headervar theURL = 'newwindow.html';var width  = 400;var height = 375;function popWindow() {newWindow = window.open(theURL,'newWindow','toolbar=no,menubar=no,resizable=yes,scrollbars=yes,status=no,left=300,top=100,width='+width+',height='+height);}<!--- end  pop up window script--><!-- hide itfunction open_window(url) {ferrari = window.open(url,"morgan",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=400,height=200,left=400,top=100');}// --><!-- hide itfunction open_windowx(url) {morgan = window.open(url,"morgan",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=750,height=600,left=200,top=100');}// --><!-- hide itfunction open_windowa(url) {morgan = window.open(url,"morgan_map",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=620,height=600,left=400,top=100');} 