function nuevo_ajax(){ 
	     var xmlhttp=false; 
		 try{ 
		     xmlhttp=new ActiveXObject("Msxml2.XMLHTTP"); 
	     }
	     catch(e){ 
		 try{ 
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP"); 
		 }  
		 catch(E) { xmlhttp=false; }
	     }
	     if (!xmlhttp && typeof XMLHttpRequest!='undefined') { xmlhttp=new XMLHttpRequest(); } 
 	     return xmlhttp; 
}

function ir_url (url,idCapa){
	     var capa =	document.getElementById(idCapa);
	     var ajax = nuevo_ajax();
	     capa.innerHTML='<img src="imagenes/loader.gif" width="16" height="16" border="0"  />';
	     ajax.open("POST",url, true);
	     ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	     ajax.send("");
	
	     ajax.onreadystatechange=function(){
			 if (ajax.readyState==4){
				 capa.innerHTML=ajax.responseText;
			 }
		 }	
}
/*
<!--
    + -------------------------------------------------- +
    | Desarrollado por: Websarrollo, C.A.                |
    |                   J-29744628-1                     |
    |                   info@websarrollo.com             |
    |                   0414-428.42.30 / 0416-730.10.61  |
    + -------------------------------------------------- +
 -->*/
