

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 =
		"           Hello there !\n" +
                            "Doctor Muffet's Web Design\n" +
		"~~~~~~~~~~~~~~~~~~~~~~~\n" +
		"\n" +
                            "In order to preserve copyright\n" +
                            "This facility has been disabled\n" +
                            "by the website designer.\n" +
		
		"\n" +
                            "(If you right clicked accidentally\n" +
                            "just press CANCEL)\n" +
                            "\n" +
		"            Thank you.\n" +
		"Doctor Muffet's Web Design\n" +
		"~~~~~~~~~~~~~~~~~~~~~~~\n"

var agree = confirm(warning);

if (agree !="0"){
	top.location="mailto:doctormuffet@millom.org?subject=Please_may_I_use_your_picture/code?";}
	return false;}
return true;}
document.onmousedown=right;
document.onmousemove=right;
