// menu2.js
// adds menu behavior for non-standards compliant
// browsers (IE)

startMenu = function() {
  if (document.all&&document.getElementById) {
    navRoot = document.getElementById("topnav1");
    for (i=0; i<navRoot.childNodes.length; i++) {
   	node = navRoot.childNodes[i];
      if (node.nodeName=="LI"||node.nodeName=="li") {
        node.onmouseover=function() {
          this.className+=" over";
        }
        node.onmouseout=function() {
          this.className=this.className.replace(" over", "");
        }
      }
    }
    navRoot2 = document.getElementById("topnav2");
    for (i=0; i<navRoot2.childNodes.length; i++) {
   	node = navRoot2.childNodes[i];
      if (node.nodeName=="LI"||node.nodeName=="li") {
        node.onmouseover=function() {
          this.className+=" over";
        }
        node.onmouseout=function() {
          this.className=this.className.replace(" over", "");
        }
      }
    }
  }
}

openMap = function (q) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(q, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=730,height=580');");
}

hideForm = function () {}

showForm = function () {}