<!--
function tampilContent(o, str)
{
var c_xh;
document.getElementById(o).innerHTML="<img src=\"/images3/spinner.gif\" title=\"memproses...\">";
if (str=="")
  {
  document.getElementById(o).innerHTML="?";
  return;
  }
if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  c_xh=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  c_xh=new ActiveXObject("Microsoft.XMLHTTP");
  }
c_xh.onreadystatechange=function()
  {
  if (c_xh.readyState==4 && c_xh.status==200)
    {
    document.getElementById(o).innerHTML=c_xh.responseText;
    }
  }
c_xh.open("GET","/get/"+str,true);
c_xh.send(null);
}
-->

