function genericAlert() { alert("Sorry. To use this feature, you need Internet Explorer."); return true; } function addToFavorites() { window.onerror = genericAlert; if (navigator.appName == "Microsoft Internet Explorer") {  if (parseInt(navigator.appVersion) >= 4) { window.external.AddFavorite(document.location, document.title); } else { friendlyAlert(); } } else if (navigator.appName == "Netscape") { friendlyAlert(); } else { genericAlert(); } } function friendlyAlert() { var win = window.open("", "HSFriendlyAlert", "width=265,height=100"); var doc = win.document; doc.write('<HTML><HEAD>'); doc.write('<TITLE>Bookmark This Site</TITLE>'); doc.write('</HEAD>'); doc.write('<BODY BGCOLOR="#FFFFFF">'); doc.write('<FONT FACE="Arial,Helvetica,Arial Narrow" SIZE=-1><CENTER>'); doc.write('<IMG SRC="http://handsonline.net/sj/bookmark_text.gif" BORDER=0>'); doc.write('</CENTER></FONT><P>'); doc.write('<CENTER><A HREF="javascript:self.close()"><IMG SRC="http://handsonline.net/sj/bookmark_close.gif" BORDER=0></A></CENTER>'); doc.write('</BODY></HTML>'); }
