// JavaScript Document
function dodaj_u() {

  tytul_ulubione = 'Mucholandia.pl';

  var url = 'http://www.mucholandia.pl';

  if (window.sidebar) { window.sidebar.addPanel(tytul_ulubione, url, ""); } // FF 

  else if (window.external) { window.external.AddFavorite(url, tytul_ulubione); } // IE

 else if (window.opera && window.print) {

 document.getElementById("ulubione").title=tytul_ulubione;

 document.getElementById("ulubione").href=url;

     var a = document.createElement('a');

     a.setAttribute('href', url);

     a.setAttribute('title', tytul_ulubione);

     a.setAttribute('rel','sidebar');

     a.click();

     

  }

 }

function startowa() {
if (document.all) {
  document.body.style.behavior = "url(#default#homepage)";
  document.body.setHomePage("http://www.mucholandia.pl");
  } else alert("Opcja dostępna tylko dla przeglądarki Internet Explorer");
}


function p (id) {

 if (document.getElementById("o_"+id).style.display=='none') document.getElementById("o_"+id).style.display='block';
 else document.getElementById("o_"+id).style.display='none';
                 }
