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