function Showdiv(pid) {
  if (window.XMLHttpRequest) {
    xmlhttp = new XMLHttpRequest();
  } else if(window.ActiveXObject) {
    xmlhttp = new ActiveXObject("MSXML2.XMLHTTP");
  }
  var processingURL = "homenext.php?action=show&pid="+pid;
  xmlhttp.open("GET",processingURL,true);
  xmlhttp.send(null);
  xmlhttp.onreadystatechange=displayResultsCategory
}

function displayResultsCategory() {
  if (xmlhttp.readyState == "4") {
    document.getElementById('showdiv').innerHTML=xmlhttp.responseText;
  } else {
    document.getElementById('showdiv').innerHTML="<img src='images/loading.gif' width='32' height='32'>";
  }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

