/*function sendHTTPRequest(url, returnpos)
{
xmlhttp=null
// code for Mozilla, etc.
if (window.XMLHttpRequest)
  {
  xmlhttp=new XMLHttpRequest()
  }
// code for IE
else if (window.ActiveXObject)
  {
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
  }
if (xmlhttp!=null)
  {
  xmlhttp.open("GET",url,false)
  xmlhttp.send(null)

	if(returnpos != ''){
		document.getElementById("" + returnpos + "").innerHTML = xmlhttp.responseText;
	} else{
		return xmlhttp.responseText;
	}
  }
else
  {
  alert("Your browser does not support XMLHTTP.")
  }
}*/

function sendHTTPRequest(url, returnpos)
{
xmlhttp=null
// code for Mozilla, etc.
if (window.XMLHttpRequest)
  {
  xmlhttp=new XMLHttpRequest()
  }
// code for IE
else if (window.ActiveXObject)
  {
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
  }
if (xmlhttp!=null)
  {
  //var newurl = new String(url);
  //var httpA = newurl.split("?", 2);
 // var httpAStr = new String(httpA[1]);
  xmlhttp.open("GET",url,false);

  
  //if(httpA[1] != undefined){
//	xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
//	xmlhttp.setRequestHeader("Content-length", httpAStr.length);
//	xmlhttp.send(httpA[1]);
//}else{
	xmlhttp.send(null);
//}
	if(returnpos != ''){
		document.getElementById("" + returnpos + "").innerHTML = xmlhttp.responseText;
	}else{
		return xmlhttp.responseText;
	}
  }
else
  {
  alert("Your browser does not support XMLHTTP.")
  }
}