    <!--
      function priv_msg(div_name01,inbox,msg_id,send_type,priv_msg_to) {
      	div_name02=div_name01;
      	if(send_type == "sending") {
			var send_priv_msg_sub = document.Submit_Form.send_priv_msg_sub.value;
			var send_priv_msg_text = document.Submit_Form.send_priv_msg_text.value;
			if(priv_msg_to == "0") {
				var priv_msg_to_user = document.Submit_Form.priv_msg_to_user.value;
				var url3 = "mods/priv_msg/priv_msg2.php?show_priv_msg=" + div_name01 + "&inbox=" + inbox + "&msg_id=" + msg_id + "&send_type=" + send_type + "&priv_msg_to=" + priv_msg_to_user + "&send_priv_msg_sub=" + send_priv_msg_sub + "&send_priv_msg_text=" + send_priv_msg_text;
			}
			else {
				var url3 = "mods/priv_msg/priv_msg2.php?show_priv_msg=" + div_name01 + "&inbox=" + inbox + "&msg_id=" + msg_id + "&send_type=" + send_type + "&priv_msg_to=" + priv_msg_to + "&send_priv_msg_sub=" + send_priv_msg_sub + "&send_priv_msg_text=" + send_priv_msg_text;
			}
      	}
      	else {
      		var url3 = "mods/priv_msg/priv_msg2.php?show_priv_msg=" + div_name01 + "&inbox=" + inbox + "&msg_id=" + msg_id + "&send_type=" + send_type + "&priv_msg_to=" + priv_msg_to;
      	}
        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_name02).innerHTML = xml3.responseText;
          } else {
            alert("There was a problem retrieving the XML data:\n" + xml3.statusText);
          }
        }
      }
    //-->  