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