    <!--
      function getPage3(msg_box,div_box) {
      	div_box2=div_box;
      		var url3 = "mods/show_privmsg_box.php?box=" +  msg_box;
        if (window.XMLHttpRequest) {
          xml3 = new XMLHttpRequest();
        } else if (window.ActiveXObject) {
          xml3 = new ActiveXObject("Microsoft.XMLHTTP");
        } else {
          alert("Your browser lacks the needed ability to use Ajax");
          return false;   
        }
        xml3.onreadystatechange = processPage3;
        xml3.open("GET", url3, true);
        xml3.send("");
        /*setTimeout('getPage('msg_box,div_box')', 5*2000);*/
     }
      function processPage3() {
        if (xml3.readyState == 4) {
          if (xml3.status == 200) {
            document.getElementById(div_box2).innerHTML = xml3.responseText;
          } else {
            alert("There was a problem retrieving the XML data:\n" + xml3.statusText);
          }
        }
      }
    //-->  