//JS document Cross Browser add to favorites;
function addBookmark(title,url) {
	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, url,"");
	}
	else if (/msie[\/ ]/.test(agt)){
		//add favorite IE
        window.external.AddFavorite( url, title);
	}
}

