function bookmark(title, url) {
	if ( !title )
		title = document.title;
	if ( !url )
		url = window.location;

        if (window.sidebar) { // firefox
              window.sidebar.addPanel(title, url,"");
        } else if( document.all ) { //MSIE
                window.external.AddFavorite( url, title);
        } else {
               alert("Notice: Sorry your browser does not support adding bookmarks using JavaScript, this is usually done for security, which is understandable in this day and age.. Instead try and manually add the bookmark using the tools within your browser. Hope that helps. Enjoy your visit. (This Applies to Google Chrome Users Primarily.)");
        }
}


