// 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 openPopup(theURL,winName) { //v2.0
  window.open(theURL,winName,'scrollbars=yes,resizable=no,width=820,height=620');
}

function right(e){
  if ((event.button == 2 || event.button == 3)) {
    alert('Welcome to XEROFIVECONCEPT.');
    return false;
  }
  return true;
}

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