//JS document Cross Browser add to favorites;
function addBookmark(title) {
	var agt=navigator.userAgent.toLowerCase();
	if(/opera[\/ ]/.test(agt)){
		//add favorite Opera
		alert("Please Click OK then press\n Ctrl-T to add to favorites in Opera");
	}
	else if(window.sidebar){
		//add favorite Netscape - Mozilla
		window.sidebar.addPanel(title,document.URL,"");
	}
	else if (/msie[\/ ]/.test(agt)){
		//add favorite IE
        window.external.AddFavorite(document.URL, title);
	}
}
