<!-- Hide scripts 

function smlctrWindow( thewin,myname,w,h)
{
	var lpos = (screen.width) ? (screen.width)/2 : 0;
	var tpos = (screen.height) ? (screen.height)/2 : 0;
	
	var myOptions = "width='+w+',height='+h+',top='+tpos+',left='+lpos+',";
	myOptions    += "scrollbars=yes,resizable=yes";
	
	var mywindow = window.open( thewin, 'myname', myOptions );
	mywindow.focus();
}
	

function newCtrdWindow( thewindow,myname,w,h,scroll,resize )
{	
	var myw = (window.screen.width)/2 - (w/2); 	// 1/2 scr wd - 1/2 new w + 4 px border
	var myh = (window.screen.height)/2 - (h-50/2); 	// 1/2 scr ht - 1/2 new h + 50 px tools
	
	var myBars = "status=no,toolbar=yes,directories=no,location=yes,menubar=yes,titlebar=yes, ";
	myBars    += "scrollbars='+scroll+',resizable='+resize'";
	var myOpts = "width='+w+',height='+h+',top='+myh+',left='+myw'";
	var myFeatures = myOpts + myBars;

	var ctrdwindow = window.open( thewindow, 'myname', myFeatures );
	ctrdwindow.focus();
}

// Rollover pointer functions
function imgover(imgname){
	imgname.src = "images/headers/Gpaw.png"
}
function imgout(imgname){
	imgname.src = "images/headers/14x14spacer.gif"
}

// End hiding script -->

