/**
|| Function to bookmark the site.
|| Tested on both IE and Firefox, for others it should default to the CTRL-D for Netscape and
|| CTRL-T for Opera.
*/
function bookmark(){
  var title = "STS 9000 Home Page";
  var url = "http://www.sts9000.com";
  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");
  }
}
