  function OpenReplyWindow(tableID, messageID)
  {
    var windowWidth = 500;
    var windowHeight = 360;
    var left = (screen.width/2)-(windowWidth/2); 
    var top = (screen.height/2)-(windowHeight/2); 
	
    windowParameters = "'toolbar=0, status=0, location=0, resizable=0, scrollbars=0, width=" + windowWidth + ", height=" + windowHeight + ", left=" + left + ", top=" + top + "'";
    var details = "newreply.php?t=" + tableID + "&m=" + messageID;
	
    var pictureWindow = window.open(details, "", windowParameters);
  }


