function ajaxFunction(inicio)
{ var xmlHttp;
try
  { xmlHttp=new XMLHttpRequest(); }
	catch (e) {
  		try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); }
	 	 catch (e) {
			 try { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } 
				catch (e) { return false; }
    	 }
  	}
  	xmlHttp.onreadystatechange=function()
   {
    	if(xmlHttp.readyState==4) {
       var masVideo= document.getElementById("carrusel"); if (masVideo) { masVideo.innerHTML = xmlHttp.responseText; }
		 /*generaCarrusel(inicio);*/
      }
   }
  xmlHttp.open("GET","/n_audios/masAudios.php?ini="+inicio,true);
  xmlHttp.send(null);
 }
