var co_xmlHttp

function showTextCol(q_id){
co_xmlHttp=GetXmlHttpObject()
if (co_xmlHttp==null)
 {
 alert ("Su navegador no soporta AJAX");
 return
 }
var url="get_colabtxt.php"
url=url+"?que_id="+q_id;
url=url+"&sid="+Math.random();
co_xmlHttp.onreadystatechange=stateChangedCol ;
co_xmlHttp.open("GET",url,true);
co_xmlHttp.send(null);

}

function stateChangedCol() 
{ 
if (co_xmlHttp.readyState==4 || co_xmlHttp.readyState=="complete")
 { 
 document.getElementById("texto_colab").innerHTML=co_xmlHttp.responseText; 
 } 
}

function GetXmlHttpObject()
{
var co_xmlHttp=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 co_xmlHttp=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  co_xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  co_xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return co_xmlHttp;
}
