<!-- Hide script from old browsers functions for new window mouseovers, onclicks, and mouseouts
function addBookmark(title, url) {
	if (window.sidebar) { // firefox
		window.sidebar.addPanel(title, url,"");
	} else if( document.all ) { // MSIE
		window.external.AddFavorite( url, title);
	} else {
		alert("Hit CTRL+D on PC or Cmd+D on Mac to add a bookmark to this site.");
	}
}
// -->
