    <!--
      function getPage2(div_menu) {
      	div_menu2=div_menu;
        	var url2 = "mods/show_privmsg_menu.php";
        if (window.XMLHttpRequest) {
          xml2 = new XMLHttpRequest();
        } else if (window.ActiveXObject) {
          xml2 = new ActiveXObject("Microsoft.XMLHTTP");
        } else {
          alert("Your browser lacks the needed ability to use Ajax");
          return false;   
        }
        xml2.onreadystatechange = processPage2;
        xml2.open("GET", url2, true);
        xml2.send("");
     }
      function processPage2() {
        if (xml2.readyState == 4) {
          if (xml2.status == 200) {
            document.getElementById(div_menu2).innerHTML = xml2.responseText;
          } else {
            alert("There was a problem retrieving the XML data:\n" + xml2.statusText);
          }
        }
      }
    //-->  