// JavaScript code to open a subwindow on a page.  
//   Used to open windows for the external PADI videos.
var myWin;

function openWindow(s, w, h, t)
{
	if (myWin)
	{ 
		myWin.close();
	} 
	myWin = window.open(s,"8th Element Diving - "+t,"menubar=no,width="+w+",height="+h+",resizable=yes,top=100,left=100,scrollbars=no");
	//myWin.document.write ("<html><head><title>8th Element Diving - "+t+"</title></head></html>");
	myWin.focus();
} // end function openWindow()