<!--
function Add_to_Fav() 
{ 
if (window.external) 
// if the browser is IE open the add favorite window
{
external.AddFavorite(location.href, document.title)
// Add the document location and title to the AddFavorite window
}
else 
// Display and alert box for any other browser.
{
alert("Firefox and other browsers." + 
"\nPress 'Ctrl' 'D' to bookmark this page.");
}

}
// -->
