<!-- 

 IE= null; //IE5+
 NS= null; // Mozilla 0.9.1+
 OPERA = null; // Opera 7
 IE55 = null;
 IE5 = null;
 IE6=null;
	
 ua = navigator.appName.toLowerCase();

 if(ua.indexOf('explorer')>-1 && document.getElementById && document.childNodes && !document.addEventListener) {IE=true;}
 if(ua.indexOf('netscape')>-1 && document.getElementById && document.childNodes && !document.all) {NS=true;}
 if(ua.indexOf('opera')>-1 && document.getElementById && document.childNodes) {OPERA=true;}

 if(!IE && !NS && !OPERA && document.addEventListener) {OPERA=true;} 
 
 ua = navigator.userAgent.toLowerCase();
 
 if(IE && ua.indexOf('5.5')>-1) {IE55=true;}
 if(IE && ua.indexOf('5.0')>-1) {IE5=true;}
 if(IE && !IE5 && !IE55) {IE6=true;}

  
 function test_prohlizec()
 {

 if(!IE && !NS && !OPERA) 
  {
   self.location = "javascript: alert('Chyba v dokumentu "+self.location+" .Prohlizec nepodporuje metody standardu W3C DOM a neni mozno dokument spravne zobrazit.')";
  }
 
 }

 function test_metoda(name)
 {
   eval("what = "+name);
   if(!what) {self.location = "javascript: alert('Chyba v dokumentu "+self.location+" .Prohlizec nepodporuje metodu "+name+" a neni mozno dokument spravne zobrazit.')";}
 }  


//  -->
