/*	
	This function allows the client to bookmark the page by clicking on the linked text 
	based on the more popular browsers available.  If the browser doesn't support that JavaScript function,
	they are then prompted to follow their respective browser's help files.
*/

	// check for Mozilla - add bookmark
	if (window.sidebar)
	{
		document.write("<a href='javascript:window.sidebar.addPanel(\""
		+document.title+"\",\""
		+location.href
		+"\",\"\")' onMouseOver='self.status=\"Add this page to your bookmarks\"; return true' onMouseOut='self.status=\"\"; return true'><b>Add this page to your Bookmarks</b></a>");
	}
	
	// check for IE - add Bookmark
	else if (document.all && !window.opera)
	{  
	document.write("<a href='javascript:window.external.AddFavorite(\""
		+location.href+"\",\""
		+document.title
		+"\")' onMouseOver='self.status=\"Add this page to your favorites\"; return true' onMouseOut='self.status=\"\"; return true'><b>Add this page to your favorites</b></a>");
	}
	
	// check for Opera - add bookmark	 
	else if(window.opera && window.print) 
	{
		document.write("<a href=\""
		+location.href
		+"\" title=\""
		+document.title
		+"\"rel=\"sidebar\" onMouseOver='self.status=\"Add this page to your bookmarks\"; return true' onMouseOut='self.status=\"\"; return true'><b>Add this page to your Bookmarks</b></a>");
	}
	
	else 
			alert("Your browser does not support bookmarking through JavaScript.  Please read your browser's help files on how to bookmark this page.  Thank you.");
