function bookmarks(title,url)
{
	if (window.sidebar) { // Used for Firefox
		window.sidebar.addPanel(title, url, "");
		alert("Firefox users: This link will open in your Sidebar\nrather than the main page!\nTo prevent this please right click the link and choose\n'Properties' and then uncheck the box marked:\n'Load This Bookmark in the Sidebar'\n\nSorry about this, but it is unavoidable with Firefox");
	}
	else if (window.opera && window.print) // Used for Opera 7+
	{ 
		alert("Opera users: By Default this link will open in your Sidebar\nrather than the main page!\nTo prevent this please uncheck the box marked\n'Show in Panel' that appears on the Add Bookmark window\n\nSorry about this, but it is currently unavoidable with Opera");
		var strElement = document.createElement('a');
		strElement.setAttribute('href',url);
		strElement.setAttribute('title',title);
		strElement.setAttribute('rel','sidebar');
		strElement.click();
	} 
	else if(document.all) // Used for IE4 or better
		window.external.AddFavorite(url, title);
}