/* 3rd party helper functions */

/* addEvent handler for IE and other browsers */
function addEvent(elm, evType, fn, useCapture) 
// addEvent and removeEvent
// cross-browser event handling for IE5+,  NS6 and Mozilla
// By Scott Andrew
{
 if (elm.addEventListener){
   elm.addEventListener(evType, fn, useCapture);
   return true;
 } else if (elm.attachEvent){
   var r = elm.attachEvent("on"+evType, fn);
   return r;
 }
}

function goPage (newURL) {
if (newURL != "") {
if (newURL == "-" ) {
   resetMenu();			
} else {  
document.location.href = newURL;
}
}
}

function resetMenu() {
document.gomenu.selector.selectedIndex = 2;
}