// Javascript: Creates an Add to Favorites button if the browser is MS IE v4 or higher
// HOWTO: <SCRIPT TYPE="text/javascript" SRC="add2favorites"></SCRIPT>

if ((navigator.appVersion.indexOf("MSIE") > 0) && (parseInt(navigator.appVersion) >= 4)) {
    var sText = '<img border="0" src="scripts/button_favorite.gif" alt="Click here to add this page to your Favorites!" width="269" height="30" onclick="window.external.AddFavorite(location.href,document.title);">';
    document.write(sText);
}
