function openWindow(pict,name)
{
 Wndow = window.open("", "_blank", "width=790,height=600,left=0,top=0");
 Wndow.name = pict;
 Wndow.document.write('<html><head><title>' + name + '</title></head>');
 Wndow.document.write('<body style="background-color:#89c9bb;"><center>');
 Wndow.document.write('<a href="javascript:self.close()"><img src="' + pict + '" alt="Fenster schliessen" border="0"></a>');
 Wndow.document.write('<div style="font-family:Arial;font-size:9pt">Zum Schliessen einfach auf das Bild klicken</div>');
 Wndow.document.write('</center></body></html>');
 Wndow.focus();
}

function neueRefs()
{
  var i;
  var ref;
  var img;

  for(i=0; i<15; i++)
  {
    ref = 'ref' + i;
    img = 'img' + i;
    
    if(document.getElementById(ref))
    {
      document.getElementById(ref).target = "";
      document.getElementById(ref).href = "javascript:openWindow('" + document.getElementById(ref).href + "','" + document.getElementById(img).alt + "')";
    }
  }
}
