//Global Var - used for NavRollOver & NavRoll Out
//
var curPage;

//
//Functions - Navigation
/*not used
function NavRollOver(td) {
	if (td.bgColor=='#ff0000') {
	curPage=td.name ;
	}
	td.bgColor='#ffcc33';
	
}
*/

/*not used
function NavRollOut(td) {
	if (curPage==td.name) {
		td.bgColor='#ff0000';
		} else {
		td.bgColor='#ff9900';
		}
}
*/

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
	document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

//	
// Get month for display on Index
function GetMonth()
{
	now = new Date;
	var arMonth=["January","February","March","April","May","June","July","August","September","October","November","December"];
	var iMonth=now.getMonth();
	return arMonth[iMonth];
}