    <!--
      function getPage1(msg_id,div_msg,msg_type,priv_msg_to,send_msg) {
      	div_msg2=div_msg;
      	if(msg_type == "msg") {
      		var url1 = "mods/show_privmsg.php?msg_id=" + msg_id;
      	}
      	else if(msg_type == "reply") {
      		var url1 = "mods/show_privmsg.php?msg_id=" + msg_id;
      		/*var url1 = "mods/send_privmsg.php?msg_id=" + msg_id + "&priv_msg_to=" + priv_msg_to + "&send_msg=" + send_msg;*/
      	}
        if (window.XMLHttpRequest) {
          xml1 = new XMLHttpRequest();
        } else if (window.ActiveXObject) {
          xml1 = new ActiveXObject("Microsoft.XMLHTTP");
        } else {
          alert("Your browser lacks the needed ability to use Ajax");
          return false;   
        }
        xml1.onreadystatechange = processPage1;
        xml1.open("GET", url1, true);
        xml1.send("");
     }
      function processPage1() {
        if (xml1.readyState == 4) {
          if (xml1.status == 200) {
            document.getElementById(div_msg2).innerHTML = xml1.responseText;
          } else {
            alert("There was a problem retrieving the XML data:\n" + xml1.statusText);
          }
        }
      }
    //-->  