<!---   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  #1 -->


// (C) 2001 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header

var theURL = 'newwindow.html';
var width  = 810;
var height = 500;

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_windowa(url) {

morgan = window.open(url,"Rain_Chains",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=yes,width=460,height=800,left=200,top=00');

}



// -->
<!-- open window,-->
<!-- hide it

function open_window(url) {
sound = window.open(url,"Rain_Chains",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=no,resizable=yes,width=500,height=200');
}

// -->







