//From www.kaagaard.dk april 2004 - free to copy and free to use
var txt = " Bookmark (Ctrl+D)"
var url = this.location;
var who = document.title;
var ver = navigator.appName
var num = parseInt(navigator.appVersion)
if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
   document.write('<A HREF="javascript:window.external.AddFavorite(url,who);" ');
   document.write('onMouseOver=" window.status=')
   document.write("return true ")
   document.write('"onMouseOut=" window.status=')
   document.write("' '; return true ")
   document.write('"><img src="bookmark.gif" alt="Bookmark here" border="0" style="text-decoration: none;"></a>')
}
else{ 
   document.write('<img src="bookmark.gif" style="text-decoration: none;"></a><br>')
document.write(txt)
}

