// mouse right click intercept

function right(e)
	{
	if (navigator.appName == 'Microsoft Internet Explorer')
		{if (event.button > 1) {alert("Penny Dreadful");}}
	else
		{if (e.which > 1) {alert ("Penny Dreadful");}}
	}

	document.onmousedown=right;
	document.onmouseup=right;
	if (document.layers) {window.captureEvents(Event.MOUSEDOWN);}
	if (document.layers) {window.captureEvents(Event.MOUSEUP);}
	window.onmousedown=right;
	window.onmouseup=right;

