<!-- Functie voor foto's in passende popup weergeven -->
function laatZien(fotonr, breedte, hoogte, src) 
{ 
foto = window.open('','','menubar=no,toolbar=no,resizable=yes'); 
foto.resizeTo(breedte,hoogte); 
foto.document.write("<html><head><title>Camping RoMaLo - Nieuwsfoto</title></head><body leftmargin='0' topmargin='0'>"); 
foto.document.write("<center><a href='JavaScript:onClick=self.close()'><img src=" + src + " alt=\"Klik op de foto om hem te sluiten\"></center></a>"); 
foto.document.write(""); 
//foto.document.oncontextmenu = function(){return false}
  if(document.layers) {
      window.captureEvents(Event.MOUSEDOWN);
       window.onmousedown = function(e){
           if(e.target==document)return false;
      }}
  else {document.onmousedown = function(){return false}}
} 

/* <a href=JavaScript:laatZien("plaatje",600,525," locatie ")>naam</a> */


<!-- functie voor popup -->
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=541,left = 320,top = 288');");
}
 /* <a href="javascript:popUp('link')"> </a> */

