<!-- hide script from older browsers

// <script language="JavaScript" src="siteScripts.js"> </script> 

var window1 = null;
var window2 = null;

// general 2nd window opener if size known 
function AlertFunc(page, width, height) 
{
 var string = "width="+width+",height="+height+",resizable=1";
  if (!window1  || window1.closed) 
	  {
		 window1 = window.open(page, "",string);
     if (window1.opener)window1.opener = window
		}	
	else 
	 {
	   window1.focus()
	   window1.location = page
	 }	 
}


// custom  window for script refs

function sRefWindow(page)
 {
  if (!window2  || window2.closed)
	  {
		 window2 = window.open(page, "", "width=500,height=450,resizable=0,scrollbars=1");
     if (window2.opener) window2.opener = window
		}
	else
	  {
		 window2.focus()
		 window2.location = page
		}	
 }


// break out of frames (call from body onload? )
function frameBreak()
 {
	if (window.parent != window.self ) {window.open(document.location, '_top'); }
 }
// If page inadvertantly loaded out of frame context, force 
// to frame set.


function fetch(location) 
 {
  var root;
  if (opener.closed) 
	 { root=window.open('','theKeepersGopher','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no');
    root.location.href = location;
   }
 else 
   {
    opener.location.href = location;
   }
 }


//-->