var xmlhttp
function loadTABDoc(url)
{
// code for Mozilla, etc.
if (window.XMLHttpRequest)
  {
  xmlhttp=new XMLHttpRequest()
  xmlhttp.onreadystatechange=loadTabPage
  xmlhttp.open("GET",url + "&hash=" + Math.random(),false)
  xmlhttp.send(null)
  }
// code for IE
else if (window.ActiveXObject)
  {
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
    if (xmlhttp)
    {
    xmlhttp.onreadystatechange=loadTabPage
    xmlhttp.open("GET",url + "&hash=" + Math.random(),false)
    xmlhttp.send()
    }
  }
}

function loadTabPage()
{
// if xmlhttp shows "loaded"
if (xmlhttp.readyState==4)
  {
  // if "OK"
  if (xmlhttp.status==200)
  {
  document.getElementById('tabDisplayCont').innerHTML=xmlhttp.responseText
  }
  else
  {
  document.getElementById('tabDisplayCont').innerHTML="Not Available"
  }
  }
}