function CatchRight(e) 
{
	var alertMsg = '© 2006 East West Meditation, All rights reserved.'; 

	if (navigator.appName == 'Netscape' &&  (e.which == 3 | e.which == 2))
	{
		alert(alertMsg);
		return false;
	} else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 | event.button == 3))
	{
		alert(alertMsg);
		return false;
	}
	return true;
}

document.onmousedown=CatchRight;
document.onmouseup=CatchRight;
if (document.layers) window.captureEvents(Event.mouseDown);
if (document.layers) window.captureEvents(Event.mouseUp);
window.onmousedown=CatchRight;
window.onmouseup=CatchRight;

