//---------------------------------------------------------------------------------------------------
//   SCRIPT NAME: rightclick.js
//   DESCRIPTION: No Right Click
//    ASSOCIATED: none
//        AUTHOR: sales@gonline.co.za
// CREATION DATE: 20/07/2002
//      MODIFIED:
//---------------------------------------------------------------------------------------------------

<!--start-->
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 =
		"COPYRIGHT Global Online\n" +
		"__________________________\n" +
		"\n" +
		"Click OK to send an e-mail.\n" +
		"Click CANCEL to contiue.\n"

var agree = confirm(warning);

if (agree !="0") {
	top.location="mailto:sales@gonline.co.za?subject=Website Source Enquiry"; }
	return false; }
return true;}
document.onmousedown=right;
document.onmousemove=right;
<!--End-->
