//----------------------------------------------------------------------
// Copyright (C) 2002 by the MozillaPL Team.
// http://www.mozillapl.org/
//----------------------------------------------------------------------

// skrypt sprawdza czy jest to Mozilla/Netscape6+ lub Opera 6+ i pozwala dodać sedebar
// w przeciwnym razie wyświetla komunikat alert z informacją

function addSidebar(SidebarTag, Title, URL) {
if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function")) {
window.sidebar.addPanel(Title, URL, "");
return true;
}
else if ((navigator.userAgent.indexOf("Opera") != -1) && (navigator.userAgent.indexOf("Opera 5") == -1)) {
SidebarTag.setAttribute("title", Title);
SidebarTag.setAttribute("href", URL);
SidebarTag.setAttribute("rel", "sidebar");
return true;
}
else { 
         var rv = window.confirm ("Panel jest dostępny wyłacznie w następujacych przegladarkach:\n\t     (Works only with:  || Nur für:)\n Mozilla, SeaMonkey, Firefox, Konqueror,Netscape 6^, Opera 6^.\n\nNie działa z MSIE ani wcześniejszymi wersjami w/w przegladarek.\n          (Doesn't work in MSIE.  ||  Es wirkt in MSIE nicht.)\n\n " + "\tZe swej strony polecamy SeaMonkey.\n\(We recommend SeaMonkey. || Wir empfehlen SeaMonkey.)\n\nCzy chca Państwo teraz przejść do strony domowej SeaMonkey?\n(Open Mozilla's homepage? || Möchten Sie Mozillahauptseite eröffnen?) "); 
         if (rv) 
		{
//		document.location.href = "http://www.seamonkey.pl/";
		upgWindowN=window.open("http://www.seamonkey.pl/");
		upgWindowM=window.open("http://mozillapl.org/");
		upgWindowM=window.open("http://www.mozilla.org");
		}
      } 
   } 

