function GetXmlHttpObject()
{
  var xmlHttp=null;
  try
    {
    // Firefox, Opera 8.0+, Safari
    xmlHttp=new XMLHttpRequest();
    }
  catch (e)
    {
    // Internet Explorer
    try
      {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e)
      {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    }
  return xmlHttp;
}   

var element;  
    
function show(id,url,div){
	element = div;
	if (id.length==0){ 
	  document.getElementById(element).innerHTML="nothing selected";
	  return;
	}
	xmlHttp=GetXmlHttpObject()
	
	if (xmlHttp==null){
	  alert ("<span class='alert'>Your browser does not support AJAX!</span>");
	  return;
	} 
	url='inc/db/'+url+"?q="+id;
	url=url+"&sid="+Math.random();
	xmlHttp.onreadystatechange=stateChanged;
	xmlHttp.open("GET",url,true);
	xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
	xmlHttp.send(null);
	document.getElementById(div).innerHTML = '<img align=center id="submitImage" name="submitImage" src="inc/busy.gif" alt="loading...">';
} 

function stateChanged() { 
	if (xmlHttp.readyState==4) { 
		document.getElementById(element).innerHTML=xmlHttp.responseText;
	}
}



