function mouseoversub(i)
{
   var src = document.getElementById("sub"+i).src.replace(/_1/, "_2");
   document.getElementById("sub"+i).src = src;
   return true;
}

function mouseoutsub(i)
{
   var src = document.getElementById("sub"+i).src.replace(/_2/, "_1");
   document.getElementById("sub"+i).src = src;
   return true;
}
        
function bildher(Bildname)

{
 LeftPosition = (screen.width) ? (screen.width-600)/2 : 0;
 TopPosition = (screen.height) ? (screen.height-400)/2 : 0;
 
 fenster=window.open("","","top="+TopPosition+",left="+LeftPosition+",width=600,height=400,status=no");

 fenster.document.open();
 fenster.document.writeln("<html><head>");
 fenster.document.writeln("<title>Dillinger Chicago Bar'n Grill</title>");
 fenster.document.writeln("</head><body bgcolor=#FFFFFF text=#333333 style='padding:0;margin:0;' onload='window.focus();'>");
 fenster.document.writeln("<table border=0 cellpadding=0 cellspacing=0 align=center>");
 fenster.document.writeln("<tr><td align=left valign=top>");
 fenster.document.writeln("<img src='images/"+Bildname+"' border=0 alt='Bild schliessen' onclick='window.close();'>");
 fenster.document.writeln("</td></tr></table></body></html>");
 fenster.document.close();

}