function getComments(id_,page_)
{
var xmlhttp;
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
  }
else if (window.ActiveXObject)
  {
  // code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
else
  {
  alert("Your browser does not support XMLHTTP!");
  }
xmlhttp.onreadystatechange=function()
{
if(xmlhttp.readyState==4)
  {
      tallymount = tallymount + 1;
      comment_tally = comment_tally - 1;
      
      if (comment_tally == "0") {
          document.getElementById('pulldown').style.display = "none";
      }
        document.getElementById('container1').innerHTML = document.getElementById('container1').innerHTML + xmlhttp.responseText;
      
      document.getElementById('pulldown').innerHTML = "&raquo show more";
      
  } else {
      document.getElementById('pulldown').innerHTML = "loading...";
  }
}
xmlhttp.open("GET","http://www.wmn.ph/article_comments.php?id=" + id_  + "&page=" + page_,true);
xmlhttp.send(null);
}