// JavaScript Document






function bookmark(){
	var title = 'SPACEBOXX';
	var url = 'http://www.spaceboxx1.cz';
   if (document.all)
     window.external.AddFavorite(url, title);
   else if (window.sidebar)
     window.sidebar.addPanel(title, url, "")
   else if (window.sidebar&&window.sidebar.addPanel)
     window.sidebar.addPanel(title,url,"");
}


function makehome()
{
    if (document.all)
    {
     	document.body.style.behavior="url(#default#homepage)";
    	document.body.setHomePage("http://www.spaceboxx1.cz");
    }
    else if (window.sidebar)
    {
         if(window.netscape)
         {
          		try
          		{
       		   		netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
          		}
      			catch(e)
      			{
   					 alert("Váš prohlížeč nepodporuje automatické nastavení této funkce.\n\n Pokud máte Firefox:\n Nástroje -> Možnosti -> Hlavní -> Spuštění\n\n V kolonce DOMOVSKÁ STRÁNKA napište\n http://www.spaceboxx1.cz");
				}
			}
		var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
		prefs.setCharPref("browser.startup.homepage","http://www.spaceboxx1.cz");
	}
}