

function getXMLHTTPRequest(){

	try{

		  req=new XMLHttpRequest();

	   }catch(err1){

	   	 try{

	   	  req=new ActiveXObject("Msxml2.XMLHTTP"); 

	   }catch(err2){

	   	  try{

	   	  req=new ActiveXObject("Microsoft.XMLHTTP");

	   }catch(err3){

	   	 req=false;

	   }

	}   

}

  return req;

}



var http=getXMLHTTPRequest();











function echeckif2(parametro){ 



	document.getElementById('img_intranet').innerHTML = "<div style='width:157; height:23; text-align:center;' ><img border='0' src='wait.gif' width='16' height='15' /></div>";



	http.open("POST","proceso.php",true);

	http.setRequestHeader('Content-Type','application/x-www-form-urlencoded');

	http.send("parametro="+parametro);

	http.onreadystatechange=Rpta;



	function Rpta(){ 

		if(http.readyState==4){ // completada

			if(http.status==200){ //completada ok 

				window.open('http://192.168.1.201/intranet/');

				document.getElementById('img_intranet').innerHTML = "";

				

			} else {

				window.open('http://syscame.came.edu.pe/intranet/');

				document.getElementById('img_intranet').innerHTML = "";

				

			}

		}

	}



}



/// E.T.C. - www.jokuz.tk

