// checkeador de links para smf, si te gustaria tenerlo en tu web envia un privado a elprofesional007
    
function colector(idmsg){
var enlaces = new String;
var msg='msg_'+idmsg;
var txt = document.getElementById(msg).innerHTML;
var matches1 = txt.match(/http:\/\/rapidshare.com[^<]+</g);
var matches2 = txt.match(/http:\/\/www.megaupload.com[^<]+</g);
var matches = matches1.concat(matches2);
for (i in matches) {
var matchstring = new String(matches[i]);
//matchstring = matches[i]+"";
matchsplit = matchstring.split(' ');
matchsplit = matchsplit[0].split('"');
matchsplit = matchsplit[0].split('\'');
matchsplit = matchsplit[0].replace('<','');

var regex = /http/i;
if(regex.test(matchsplit)==true){
enlaces += matchsplit+' ';
}
}
//alert(enlaces);
get(idmsg,enlaces);

}


   var http_request = false;
   function makePOSTRequest(idmsg,url, parameters) {
   function alertContents() {
      if (http_request.readyState == 4) {
     // if (http_request.status == 200) {
            //alert(http_request.responseText);
            result = http_request.responseText;
            
            document.getElementById("colector_"+idmsg).innerHTML = result;            
         //} else {
         //   alert('There was a problem with the request.');
        // }
      }
      
      else {document.getElementById("colector_"+idmsg).innerHTML = '<img src="/imagenes/ajax-loader.gif" alt="Loading...">';}
  
   }
      http_request = false;
      if (window.XMLHttpRequest) { // Mozilla, Safari,...
         http_request = new XMLHttpRequest();
         if (http_request.overrideMimeType) {
         	// set type accordingly to anticipated content type
            //http_request.overrideMimeType('text/xml');
            http_request.overrideMimeType('text/html');
         }
      } else if (window.ActiveXObject) { // IE
         try {
            http_request = new ActiveXObject("Msxml2.XMLHTTP");
         } catch (e) {
            try {
               http_request = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e) {}
         }
      }
      if (!http_request) {
         alert('Cannot create XMLHTTP instance');
         return false;
      }
      http_request.onreadystatechange = alertContents;
      http_request.open('POST', url, true);
      http_request.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
      http_request.setRequestHeader("Content-length", parameters.length);
      http_request.setRequestHeader("Connection", "close");
      http_request.send(parameters);
   }

   
   
   function get(idmsg,obj) {
   
   var poststr = "links=" + encodeURI( obj );
   makePOSTRequest(idmsg,'/check.php', poststr);
      
   }
