function has_more( formid){
var str_url="?clk="+formid;
var xmlhttp;
if (window.XMLHttpRequest)
  {
  xmlhttp=new XMLHttpRequest();
  }
else
  {
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.open("GET",str_url,true);
xmlhttp.send();
}

function rturl( formid){
var str_url="?rtl="+formid;
var xmlhttp;
if (window.XMLHttpRequest)
  {
  xmlhttp=new XMLHttpRequest();
  }
else
  {
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttp.open("GET",str_url, false); 
xmlhttp.send(null);
document.getElementById('ratelink').innerHTML = xmlhttp.responseText;
}
