// window opener >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>

//	Generic window popper, lets you define name + size attributes per link: 
//	<a href="javascript:display('fileName.html','winName',width,height)"> </a>

	function display(url, name,w,h) {
			bandWin = window.open(url, name,'resizable=0,scrollbars=1,width=' + w + ',height=' + h);
     		bandWin.focus();
     	}



// upcoming show window pop function >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 
// be sure to adjust window width + height for each show graphic
//  put this in body tag: onLoad="showPop()"

	function showPop () { setTimeout("new_Pop()",1000); }
	function new_Pop ()   { window.open('showPops/mar_Kimos.html','showPop','toolbar=no,location=no,status=no,menubar=no,top=50,left=100,width=465,height=285').href = "mar_Kimos.html"; }

