// JavaScript Document

function AddBookmark(title,url) {
		  
	var BookmarkURL="http://www.glovex.com.pl/"
	
	var BookmarkTitle="GLOVEX - rękawice, odzież, obuwie, artykuły BHP"
			  
	if(window.sidebar) // Firefox
	{
		window.sidebar.addPanel(BookmarkTitle, BookmarkURL,'');
	}
	
	else if(window.opera) // Opera
	{
		var a = document.createElement("A");
		a.rel = "sidebar";
		a.target = "_search";
		a.title = BookmarkTitle;
		a.href = BookmarkURL;
		a.click();
	}
	
	else if(document.all) // IE
	{
		window.external.AddFavorite(BookmarkURL, BookmarkTitle);
	}

}