// JavaScript Document

  function newWindow(img, alt) {
     windowImg=window.open("","displayWindow","menubar=yes");
     windowImg.document.write("<head><title>Vindemia - Fotogalerie - "+ alt +"</title></head>");
     windowImg.document.write("<div style='text-align: center;'><strong>"+ alt +"</strong><br /><br /><img src='../images/fotogalerie/"+ img +".jpg' /></div>");
     return !newWindow;
  }

