// Load photobook in popup

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// load banner and change
var embedSIRCSS = '<' + 'style type="text/css" media="all">'
+ '@import "mod_jw_sir.css";'
+ 'ul#jw-sir,ul#jw-sir li#jw-sir-loading {width:1000px;height:163px;}'
+ '</' + 'style>';
document.write(embedSIRCSS);

<!-- 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>Martens Voorthuizen - Vergroting foto</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}}
} 
