
// ----------RIGHT CLICK MESSAGE-----

  function right(e)
  {
    if (navigator.appName=='Netscape'&&(e.which==3||e.which==2))
    {
      return false;
    }
    
    else if (navigator.appName=='Microsoft Internet Explorer'&&(event.button==2||event.button==3))
    {
		warning =
		"Thank you for visiting my website!\n" +
		"\n" +
		"Created by Dmitry A. Belakhov and last updated on July 11, 2001.\n" +
		"\n" +
		"Please send me your questions and comments.\n"

		var agree = confirm(warning);

/*		if (agree !="0")
 *              {
 *		  top.location="mailto:web@belakhov.com?subject=When visiting your website..."; 
 *		}
 *  return false; 
 */
    }
    return true;
  }
  document.onmousedown=right;
  document.onmousemove=right;

//</script>

