function Deblur(mylink)
{ if (document.all)
  mylink.blur();
}


/* NEUES FENSTER INKL. CLOSE  - KARTENANSICHT (Kontaktseite)*/


function OpenNewWindow(Picture,Breit,Hoch)
{
xsize = Breit+2;// Zusatz für Rand rechts und links
ysize = Hoch+100; //Zusatz für Rand oben und unten - damit Button angezeit werden kann

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/2)-(xsize/2);
ypos = (ScreenHeight/2)-(ysize/2);

        NewWindow=window.open("","Picture","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");
        NewWindow.document.write ("<html><head><title>die.fechtmeister - Anfahrt Kartenansicht");
        NewWindow.document.write ("</title></head>");
        NewWindow.document.write ("<body style='margin: 0px;' bgcolor='#FFFFFF' onload='focus()'>");
        //NewWindow.document.write ("<body bgcolor='#cccccc' marginheight='0' marginwidth='0' topmargin='0' leftmargin'0'>");
        NewWindow.document.write ("<table border='0' align='center' cellspacing='0' cellpadding='0'><tr>");
        NewWindow.document.write ("<td>");
        NewWindow.document.write ("<table border='0' cellpadding='0' cellspacing='0'><tr><td>");
        NewWindow.document.write ("<img src=");
        NewWindow.document.write (Picture);
        NewWindow.document.write (">");
        NewWindow.document.write ("</tr></table>");
        NewWindow.document.write ("</td></tr><tr>");
        NewWindow.document.write ("<td align='center' valign='bottom'>");
        NewWindow.document.write ("<br><center><form><input style='border: 1px solid #2F2F2F;margin: 0; background: #dddddd; font: bold 9pt/130% Arial, Tahoma, Sans; color: #2F2F2F;' type='button' value='Fenster schließen' onClick='self.close()'>");
        NewWindow.document.write ("</td></tr></table>");
        NewWindow.document.write ("</form></body></html>");
        NewWindow.document.close();
                     NewWindow.resizeTo(xsize,ysize);
}
