function show_comments(pageno)
{
	var xmlhttp;
if (window.XMLHttpRequest)
  {xmlhttp=new XMLHttpRequest();
  }
else
  {xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("tab1_comment").innerHTML=xmlhttp.responseText;
    }
  };
xmlhttp.open("GET","show_comments.php?pageno="+pageno+"&info=tab1",true);
xmlhttp.send();
return false; 
} 

function show_comments_tab2(pageno)
{
	var xmlhttp;
if (window.XMLHttpRequest)
  {xmlhttp=new XMLHttpRequest();
  }
else
  {xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("tab2_comment").innerHTML=xmlhttp.responseText;
    }
  };
xmlhttp.open("GET","show_comments.php?pageno="+pageno+"&info=tab2",true);
xmlhttp.send();
return false; 
} 
