
// ========= JAVASCRIPT FUNCTION LIBRARY FOR BASIC FUNCTIONALITY OF THE SITE ==================

function myVoid() {;}


function act(imgName) {
  if (document.images)
		if(document[imgName]){
			document[imgName].src = eval(imgName + '_on.src');
		}

}

function inact(imgName) {
  if (document.images)
		if(document[imgName]){
			document[imgName].src = eval(imgName + '_off.src');
		}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}




