<!--
function clicie() {

	if ((event.button==2)||(event.button==3)) {
		window.alert("Select your browser's print feature to obtain a copy of this page.");
	}
}
function clicns(e){

	if(e.which==3){
		window.alert("Select your browser's print feature to obtain a copy of this page.");
		return false;
	}
}
if (document.all) { document.onmousedown=clicie;}
if (document.layers) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}
if (window.sidebar) {document.captureEvents(Event.MOUSEDOWN); document.onmousedown = clicns;}
//-->

<!--
function disableselect(e){
	return false;
}
function reEnable(){
	return true;
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
	document.onmousedown=disableselect;
	document.onclick=reEnable;
}
//-->
