// Provided FREE of charge from www.prestwood.com.
// Written by Mike Prestwood (mike@prestwood.com)
var sAddFavorites = "<div align='center'><table width='120' border='0' cellpadding='1' cellspacing='1'>"
                    + "<tr><td valign='middle' align='center'>"
                    + "<img src='images/bookmark.gif' border='0' width='16' height='16'>"
                    + "</td><td valign='middle' align='left'>"
                    + "<font face='Arial, Verdana' size='1' color='#FF0000'>"
                    + "Bookmark this page now.</font></td></tr></table></div>";

if ((navigator.appVersion.indexOf("MSIE") > 0) && (parseInt(navigator.appVersion) >= 4))
{
  sAddFavorites = "<div align='center'><table border='0' cellpadding='1' cellspacing='1'>"
                    + "<tr><td><span style='cursor:hand;'"
                    + "onclick='window.external.AddFavorite(location.href, "
                    + "document.title);' class='Text9RedLink'>"
                    + "<font face='Arial, Verdana' size='1' color='#800000'>"
                    + "<img src='images/bookmark.gif' border='0'"
                    + "width='16' height='16'></font></span></td>"
                    + "<td><span style='cursor:hand;' onclick"
                    + "='window.external.AddFavorite(location.href,"
                    + "document.title);' class="
                    + "'Text9RedLink'><font face='Arial, Verdana' size='1' color='#800000'>"
                    + "Add to Favorites!</font></span></td>"
                    + "</tr></table></div>";
}
else if (navigator.appName=='Netscape')
{
  sAddFavorites = "<div align='center'><table width='120' border='0' cellpadding='1' cellspacing='1'>"
                    + "<tr><td valign='middle' align='center'>"
                    + "<img src='images/bookmark.gif' border='0' width='16' height='16'>"
                    + "</td><td valign='middle' align='left'>"
                    + "<font face='Arial, Verdana' size='1' color='#FF0000'>"
                    + "Bookmark this page now - CONTROL+D.</font></td></tr></table></div>";
}
document.write(sAddFavorites);
