<!--

// start reload window if nav4 resized

function reloadPage(init) {  
  	if (init==true) 
		with (navigator) 
		{
		if ((appName=="Netscape")&&(parseInt(appVersion)==4)) 
			{
    		document.MM_pgW=innerWidth; 
			document.MM_pgH=innerHeight; 
			onresize=reloadPage; 
			}
		}
  		else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) 
			location.reload();
} // end reloadPage

// keeps table width at 100 of window, prevents color of background 
// from coming through on right side of a 100% table

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function change_colors(){
	document.body.style.scrollbarBaseColor='#666666'
	document.body.style.scrollbarArrowColor='#000000'
	document.body.style.scrollbarDarkShadowColor='#336699'
	document.body.style.scrollbarFaceColor='#cccc99'
	document.body.style.scrollbarHighlightColor='#C0C0C0'
	document.body.style.scrollbarShadowColor='#000080'
	document.body.style.scrollbar3dlightColor='#000080'
}// end change_colors

// -->
