function showImg(url, titel, format)
{
  var formattext = ',width=625,height=500';
  if (format == 'h')
    formattext = ',width=475,height=650';

  fenster = window.open("",'images','fullscreen=0,toolbar=0,location=0, top=30, left=150,  directories=0,status=0,menubar=0,scrollbars=auto,resizable=0'+formattext);
  fenster.document.write('<html><head><title>Hotel Hasenmayer Pforzheim</title>');
  fenster.document.write('<link rel="stylesheet" type="text/css" href="style.css"></head>');
  fenster.document.write('<body>');
  fenster.document.write('<h1 align="center">'+titel+'</h1>');
  fenster.document.write('<p><div align="center"><img class="imgborder" src="'+url+'" border="1" onClick="self.close()"></p>');
  fenster.document.write('</body></html>');
  return
}