window.onload = function(e) {   
  cl();
}
    function cl () {
    
       var contain = new Array; //definice pole
       
       //jake odkazy ma obsahovat
       contain[0] = 'http://krecek.org';
       contain[1] = 'http://www.ledtelevize.cz';
     
       
       var msgThief = 
       "";
      /////////////////////////////
      
       var hell = false;
       var stop = (contain.length);
       var i = 0;
       
       while (i < stop) {
       
           if ( !document.getElementById("footer").innerHTML.match(".*"+contain[i]+".*") ) { 
                hell = true;               
           }
           i++;
       }      
      
       if (hell) {             
           document.getElementById("all").innerHTML = msgThief; 
       }
   
    }

