function check_bol () {
	req = null;

	var url = "data.php";

	// Procura por um objeto nativo ( Mozilla/Safari )
	if (window.XMLHttpRequest) {
		req = new XMLHttpRequest();
		req.onreadystatechange = function(){
			if (req.readyState == 4) {
				if (req.status == 200) {
//					 alert("Verificação dos boletos realizada com sucesso.");
				}
			}
		};

		req.open("GET",url,true);
		req.send(null);

		// Procura por uma versão ActiveX (IE)
	} else {
		try { 
	         req=new ActiveXObject("Msxml2.XMLHTTP");  // activeX (IE5.5+/MSXML2+)
	      }
      	catch(e) {
	        try { 
	  	 		req=new ActiveXObject("Microsoft.XMLHTTP"); // activeX (IE5+/MSXML1)
	        }
	        catch(e) { /* O navegador nÃ£o tem suporte */ 
	  	 		req=false; 
	        }
      	}

		//req = new ActiveXObject("Microsoft.XMLHTTP");
		if (req) {
			req.onreadystatechange = function(){
				if (req.readyState == 4) {
					if (req.status == 200) {
//						 alert("Verificação dos boletos realizada com sucesso.");
					}
				}
			};
			req.open("GET",url,true);
			req.send();
		}
	}
}