<!-- 
var xmlHttp_informacio

function mostrarInformacio(id)
{ 
xmlHttp_informacio=GetXmlHttpObject();
if (xmlHttp_informacio==null)
  {
  alert ("Your browser does not support AJAX!");
  return;
  } 

var url="../videos/mostrar_informacio.asp";
url=url+"?id="+id;
url=url+"&sid="+Math.random();
xmlHttp_informacio.onreadystatechange=stateChanged_informacio;
xmlHttp_informacio.open("GET",url,true);
xmlHttp_informacio.send(null);
}

function stateChanged_informacio() 
{ 
if (xmlHttp_informacio.readyState==4)
{ 
document.getElementById("dades").innerHTML=xmlHttp_informacio.responseText;
}
}

function GetXmlHttpObject()
{
var xmlHttp_informacio=null;
try
  {
  // Firefox, Opera 8.0+, Safari
  xmlHttp_informacio=new XMLHttpRequest();
  }
catch (e)
  {
  // Internet Explorer
  try
    {
    xmlHttp_informacio=new ActiveXObject("Msxml2.XMLHTTP");
    }
  catch (e)
    {
    xmlHttp_informacio=new ActiveXObject("Microsoft.XMLHTTP");
    }
  }
return xmlHttp_informacio;
}
-->
