//----------------------------------------------------------------------
// 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 ("Sidebar is only in \n\tMozilla, Netscape 6^, Opera 6^ available.\nDoesn't work with MSIE and earlier versions of Netscape and Opera browser.\n " + "\tWe recommend Mozilla.\nDo you want now go to Mozilla home sites?"); 
         if (rv) 
		{
//		document.location.href = "http://mozillapl.org/";
		upgWindowM=window.open("http://mozilla.org/");
		}
      } 
   } 

