function menus(){startList("nav");           // initialise 1st level navstartList("Menu_C_box");           // initialise 2nd level navstartList("Menu_B_box");           // initialise 2nd level nav}function startList(pass_id){var the_id=pass_id;if (document.all&&document.getElementById) {navRoot = document.getElementById(pass_id);for (i=0; i<navRoot.childNodes.length; i++) {node = navRoot.childNodes[i];if (node.nodeName=="LI") {node.onmouseover=function() {this.className+=" over";  }  node.onmouseout=function() {  this.className=this.className.replace(" over", "");   }   }  } }}function getURLParam(strParamName){  var strReturn = "";  var strHref = window.location.href;  if ( strHref.indexOf("&") > -1 ){    var strQueryString = strHref.substr(strHref.indexOf("&")).toLowerCase();    var aQueryString = strQueryString.split("&");    for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){      if ( aQueryString[iParam].indexOf(strParamName + "=") > -1 ){        var aParam = aQueryString[iParam].split("=");        strReturn = aParam[1];        break;      }    }  }  return strReturn;}     