
function openPicture(imageName,alt) {
  newWindow = window.open("","newWindow","width=1200,height=1024,scrollbars=yes,resizable=yes");
  newWindow.document.open();
  newWindow.document.write('<html><title>'+alt+'</title><body>'); 
  newWindow.document.write('<img src='+imageName+' alt='+alt+'>'); 
  newWindow.document.write('</body></html>');
  newWindow.document.close();
  newWindow.focus();
}

