// JavaScript Document<script type="text/javascript">
	function addBookmark(obj, title, url) {
		if (window.sidebar) {
			window.sidebar.addPanel(title, url,"");
		} else if(document.all) {
			window.external.AddToFavoritesBar(url, title);
		} else if(window.opera && window.print) {
			 //Opera Hotlist
    		obj.setAttribute('href',url);
    		obj.setAttribute('title',title);
    		obj.setAttribute('rel','sidebar');
    		obj.click();
    		return false;		 
		 } 
		 else {
			alert("Sorry! Your browser doesn't support this function. Please bookmark this page manually.");
		}
	}