// scripts.js

function boxOn(which) {if (document.all||document.getElementById) {which.className = 'BorderOn';}}
function boxOff(which) {if (document.all||document.getElementById) {which.className = 'BorderOff';}}

function menu() {
document.write('<div id="menu">');
document.write('<style>a:link {text-decoration:none;} a:visited	{text-decoration:none;} a:active {text-decoration:none;}');
document.write('a:hover	{text-decoration:none;}</style>');
document.write('<br> <center><img src="images/bijbelin.gif" alt=" Start " border="0" hspace=0 vspace=0></center><br>');
document.write('<a href="index.html"><div class="BorderOff" onMouseover="boxOn(this)" onMouseout="boxOff(this)">&nbsp;Start Pagina</div></a><br>');
document.write('<a href="algemeen.htm"><div class="BorderOff" onMouseover="boxOn(this)" onMouseout="boxOff(this)">&nbsp;Algemeen</div></a><br>');
document.write('<a href="fotos.htm"><div class="BorderOff" onMouseover="boxOn(this)" onMouseout="boxOff(this)">&nbsp;Foto impressie</div></a><br>');
document.write('<a href="plattegr.htm"><div class="BorderOff" onMouseover="boxOn(this)" onMouseout="boxOff(this)">&nbsp;Waar te vinden</div></a><br>');
document.write('<a href="open.htm"><div class="BorderOff" onMouseover="boxOn(this)" onMouseout="boxOff(this)">&nbsp;Openingstijden</div></a><br>');
document.write('<a href="contact.htm"><div class="BorderOff" onMouseover="boxOn(this)" onMouseout="boxOff(this)">&nbsp;Contact</div></a><br>');
document.write('<a href="cd_leveranciers.htm"><div class="BorderOff" onMouseover="boxOn(this)" onMouseout="boxOff(this)">&nbsp;CD leveranciers</div></a><br>');
document.write('<a href="links.htm"><div class="BorderOff" onMouseover="boxOn(this)" onMouseout="boxOff(this)">&nbsp;Links</div></a><br>');
document.write('<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div>');
}

/* T.b.v. het weergeven van uitvergroting van de plaatjes */
function ShowPict(title,src)
{
  w_pict = open("", 'title', "menubar=no,status=no,toolbar=no,resizable=yes,left=100,top=80");
  w_pict.document.open();
  w_pict.document.writeln('<html><head><title>' + title + '</title></head><body bgcolor="#000000" leftmargin="0" topmargin="0">');

  w_pict.document.writeln('<a href="javascript: window.close()">');

  w_pict.document.writeln('<img src= ' + src + ' border=0 ALIGN="MIDDLE" ' + 
  'onLoad = "window.resizeTo(window.document.images[0].width + 13, window.document.images[0].height + 30)">');
  w_pict.document.writeln('</a></body></html>');
  w_pict.document.close();
  w_pict.focus();
}

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;
}
