var xmlHttp2

function playsel()
{ 
xmlHttp2=GetXmlHttpObject();
if (xmlHttp2==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 
var url2="playsel.asp";
xmlHttp2.onreadystatechange=stateChanged2;
xmlHttp2.open("GET",url2,true);
xmlHttp2.send(null);


}

function stateChanged2() 
{ 
if (xmlHttp2.readyState==4)
{ 
document.getElementById("playsel").innerHTML=xmlHttp2.responseText;
}
}
