// JavaScript Document
function bookmark(url, description){
  netscape="For Netscape Users, please hit CTRL+D to add a bookmark to www.bluebellpeople.com. Thankyou."
  if (navigator.appName=='Microsoft Internet Explorer'){
    window.external.AddFavorite(url, description);
  }else if (navigator.appName=='Netscape'){
    alert(netscape);
  }
}// end of bookmark()

/*
function right(e){
  if ((event.button == 2 || event.button == 3)) {
    alert('Welcome to Bostik Findley Singapore Pte Ltd.');
    return false;
  }
  return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
  window.onmousedown=right;
*/