/*****************************************************************/
/* This script captures the right-click and displays a message   */
/* box with contact information                                  */
/*****************************************************************/


document.onmousedown = CaptureRightClick;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown = CaptureRightClick;

