// JavaScript Document
<!--

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}

// JUMP MENU SCRIPT

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

// POP-UP WINDOW

function openWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// HIGHLIGHTED NAV

function hot(id) {
  if (document.getElementById) {
    document.getElementById(id).style.color = '#99CC00';
  }
  else if (document.all) {
    document.all[id].style.color = '#99CC00';
  }
}
function normal(id) {
  if (document.getElementById) {
    document.getElementById(id).style.color = '#99CC00';
  }
  else if (document.all) {
    document.all[id].style.color = '#99CC00';
  }
}
// -->
