function bookmark(url,title){
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  } else {
    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
  }
}

document.write("<a href=\"javascript:bookmark('" + window.location + "','" + document.title + "')\">Bookmark</a>");
document.write(" | ");

document.write(' <A CLASS="contact" HREF=\"mailto:\?subject='+ document.title + '&body=Take a look at this page: ' + escape(window.location.toString()) + '\" onMouseOver="window.status=\'Tell A Friend\'; return true" TITLE="Tell A Friend">Tell A Friend<\/A>');
