// scripts.js 
function kend(stuur) {

document.write('<P class="end">');
document.write('<a href="index.html" target="_blank">This page is a part of the Evangelical School Of Theology (EST) site<br>');
document.write('Click here if you reached this page by a source engine.<br>');
document.write('A new window will be opened containing the starting page.</a>');
document.write('<br>Last update: ');

var m = document.lastModified; 
var p = m.length-14;
document.write(m.substring(p, 3));
var p = m.length-17; 
document.write('-',m.substring(p, 0),'-');
var p = m.length-8;  
document.write(m.substring(p, 6));
if (stuur == 1) document.write('&nbsp; &nbsp; Ref. nr. 3.3');
document.write('</p>');
}



function hidden(){
if (window.Event)   
  document.captureEvents(Event.MOUSEUP);
 function nocontextmenu()
{
 event.cancelBubble = true
 event.returnValue = false;  
  return false;
}
 function norightclick(e)
{
 if (window.Event)
 {
  if (e.which == 2 || e.which == 3)
   return false;
 }
 else
  if (event.button == 2 || event.button == 3)
  {
   event.cancelBubble = true
   event.returnValue = false;
   return false;
  }
 }
 document.oncontextmenu = nocontextmenu;
 document.onmousedown = norightclick;
}

