function how() {
s = window.open('http://www.eteamz.com/tehachapill/files/howtotell.htm', 'contact', 'width=540, height=400, resizable=1');
}

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com)
//For full source code, visit http://www.dynamicdrive.com

var message="copyright permission not available";
///////////////////////////////////
function clickIE() {
	if (document.all) {
		alert(message);
		return false;
	}
}

function clickNS(e) {
	if (document.layers||(document.getElementById&&!document.all)) {
		if (e.which==2||e.which==3) {
			alert(message);
			return false;
		}
	}
}

