<!--
function blockError(){return true;}

<!--- PASSWORD PROTECTION SCRIPT
function TheLogin() {

var password = 'Boutef09';

if (this.document.login.pass.value == password) {
  top.location.href="Intranet.htm";
}
else {
  location.href="incorrect.htm";
  }
}

function noRightClick() {
if (event.button==2) {
	 alert('You may not right mouse click this page.')
}
}
document.onmousedown=noRightClick

window.onerror = blockError;


// -->
