function ajaxFunction(inicio,seccion,tagg)
{ 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 masNotas= document.getElementById("tablanotas"); if (masNotas) { masNotas.innerHTML = xmlHttp.responseText; }
      }
   }
  xmlHttp.open("GET","/x_notas/masnotas.php?ini="+inicio+"&sec="+seccion+"&tag="+tagg,true);
  xmlHttp.send(null);
 }

 