<!--
function menuHover() {
	    var items=document.getElementById("items").getElementsByTagName("li");
	    for (var t=0; t < items.length; t++) {
		items[t].onmouseover = function() {
		    this.className += " menuhover";
		}
		items[t].onmouseout = function() {
		    this.className = this.className.replace(new RegExp(" menuhover\\b"),"");
		}
	    }
	}
	if (window.attachEvent) window.attachEvent("onload",menuHover);
//-->

<!--
function GP_popupConfirmMsg(msg) {
  document.MM_returnValue = confirm(msg);
}
//-->
