// JavaScript Document
function openWin(img) {
  winId = window.open('','newwin','width=640,height=480');
  winId.document.write('<html><head><title>P&A Verhuur</title><link rel="stylesheet" href="css/stylesheet.css"></head>');
  winId.document.write('<body onLoad="if (window.focus) window.focus()">');
  winId.document.write('<center><img src="images/verhuur/' + img + '" height="400"></center>');
  winId.document.write('<br><a class="body" href="javascript:self.close()"><center>Sluiten</center></a></p>');
  winId.document.write('</body></html>');
  winId.document.close();
}

