
/* Bob's OOI Cross-Browser Add to Favorites and Bookmark Script */
/* Creates bookmark and auto reads the TITLE and URL to bookmark for every page */
function bookmarksite(title,url){
var url = window.location.href;
var title = document.title;
if (window.sidebar) // firefox add
	window.sidebar.addPanel(title, url, "");
else if(window.opera && window.print){ // opera add
	var elem = document.createElement('a');
	elem.setAttribute('href',url);
	elem.setAttribute('title',title);
	elem.setAttribute('rel','sidebar');
	elem.click();
} 
else if(document.all)// ie add
	window.external.AddFavorite(url, title);
}
