<!-- Netscape 4 Resize Fix
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);
// End -->

<!-- Full Screen Popup
function popUpFullScreen(nameOfFile, paramters, anchorName){
	if (anchorName != " ")
	var urlToOpen = nameOfFile + "?" + paramters + "#" + anchorName;
else
	var urlToOpen = nameOfFile + "?" + paramters;
	var popUpWindow = window.open(urlToOpen,"", "width="+(screen.width-10)+",height="+(screen.height-80)+",left=0,top=0,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no");
}
// End -->

<!-- Select Menu Links
function MM_jumpMenu(targ,selObj,restore){
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->

<!-- Image Rollovers -->
	homeon = new Image();					homeon.src="/images/home-on.gif";
	homeoff = new Image();					homeoff.src="/images/home-off.gif";

function img_act(imgName) {
	imgOn = eval(imgName + "on.src");
	document [imgName].src = imgOn;
}

function img_inact(imgName) {
	imgOff = eval(imgName + "off.src");
	document [imgName].src = imgOff;
}
//-->

<!-- Begin Email Write Script
// Syntax for HTML: name,domain,options,link,style,hyperlink
function writeemail(emailname, emaildomain, emailoption, emailtext, emailstyle, emaillink) {
	if (emailtext == "" || emailtext == null) {
		emailtext = (emailname + '@' + emaildomain);
	}
	if (emailoption == "" || emailoption == null) {
		emailoption2 = ('');
	} else {
		emailoption2 = ('?' + emailoption);
	}
	if (emailstyle == "" || emailstyle == null) {
		emailstyle2 = ('');
	} else {
		emailstyle2 = (' style="' + emailstyle + '"');
	}
	if (emaillink == "" || emaillink == null || emaillink == "yes" || emaillink == "true") {
	emailadd=(emailname + '@' + emaildomain + emailoption2);
	return('<a href="mailto:' + emailadd + '"' + emailstyle2 +'>' + emailtext + '</a>');
	} else {
	emailadd=(emailname + '@' + emaildomain);
	return('' + emailadd + '');
	}
}
//-->