<!--
//  This bookmark script will create a link that
//  will add the current page to a visitors favorites
//  bookmark menu in both Firefox and IE.

function addBookmark(title,url) {
	if (window.sidebar) {
		window.sidebar.addPanel(title, url,"");
	} else if( document.all ) {
		window.external.AddFavorite( url, title);
	} else if( window.opera && window.print ) {
		return true;
	}
}
//-->