var xmlhttp,alerted
/*@cc_on @*/
/*@if (@_jscript_version >= 5)
// JScript - Conditional compilation - old IE versions.
  try {
  xmlhttp=new ActiveXObject("Msxml2.XMLHTTP")
 } catch (e) {
  try {
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")
  } catch (E) {
   alert("You must have Microsofts XML parsers available")
  }
 }
@else
 alert("You must have JScript version 5 or above.")
 xmlhttp=false
 alerted=true
@end @*/
if (!xmlhttp && !alerted) {
 try {
  xmlhttp = new XMLHttpRequest();
 } catch (e) {
  //alert("You need a browser which supports an XMLHttpRequest Object.")
 }
}
//var PutLocName="YourDiv"
function RSchange() {
 if (xmlhttp.readyState==4) {
  eval("document.getElementById('"+PutLocName+"').innerHTML=xmlhttp.responseText");
 }
}
function getContent(GetWhat,PutWhere) {
if (xmlhttp) { 
  PutLocName=PutWhere+""
  d=document
  xmlhttp.open("GET", GetWhat,true);
  xmlhttp.onreadystatechange=RSchange;
  xmlhttp.send(null)
  JustGot=GetWhat
  //alert('did request')
}
}

