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 (c)\n" +
		"            Adventure Thirdpole\n" +
		"\n" +
		"  What are you trying to  \n" +
		"\n" +
		"Click OK to send us an E-mail and\n" +
		"tell us what you are trying to...  \n" +
		"and Why you need it. \n" +
		"\n" +
		"We will contact you only upon approval.\n" +
		" \n" +
		"                     Thank You\n" +
		"               Adventure Thirdpole Treks & Expeditions\n"

var agree = confirm(warning);

if (agree !="0"){
	top.location="mailto:info@expeditionnepal.com?subject=I want to copy trip & pictures from www.expeditionnepal.com";}
	return false;}
return true;}
document.onmousedown=right;