home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 April / Chip_2003-04_cd1.bin / internet / root / index_files / sidebar.js < prev    next >
Text File  |  2003-02-24  |  482b  |  15 lines

  1. /* from Netscape Sidebar Developer's Guide */
  2. function enableSidebar() { 
  3.     if ((typeof window.sidebar == "object") &&
  4.             (typeof window.sidebar.addPanel == "function")) { 
  5.         window.sidebar.addPanel ("ROOT.cz", 
  6.                 "http://www.root.cz/sidebar.php4",""); 
  7.     }  else  { 
  8.         var rv = window.confirm("Sidebar je urΦen pouze pro prohlφ╛eΦ " +
  9.                 "Mozilla nebo kompatibilnφ. " +
  10.                 "Chcete si stßhnout Mozillu?"); 
  11.         if (rv) 
  12.             document.location.href = "http://www.mozilla.org/";
  13.     } 
  14.