<!--

function noRightClick(e) {
	  if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) 
	        {  
	        alert('Sorry, this option is not available. ~:o)!');
	        return false;
	        }
	  else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
	    alert('Sorry, this option is not available. ~:o)');
	    return false;
	  }

	  return true;
	}

document.onmousedown=noRightClick;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=noRightClick;
// -->