// JavaScript Document
function bookmark(url,title){
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else {
    alert("Close this box then press CTRL-D (FireFox & Netscape) or CTRL-T (Opera) to bookmark\n(Make sure that you are on the page you want to bookmark)");
  }
}
