﻿function OpenNewWindow(Picture,Breit,Hoch,Caption)
{
xsize = Breit+35;// Zusatz für Rand rechts und links
ysize = Hoch+105; //Zusatz für Rand oben und unten - damit Button angezeigt 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>Praxisklinik Dr. Schuppert Bonn");
	NewWindow.document.write ("</title></head>\n");
	NewWindow.document.write ("<body bgcolor='#FFFFFF' onload='focus()'>\n");
	NewWindow.document.write ("<table align='center' border='0'>\n<tr>\n");
	NewWindow.document.write ("<td align='center' valign='top'>\n");
	NewWindow.document.write ("<table border='0' cellpadding='0' cellspacing='1'>\n<tr>\n<td align='center'>\n");
	NewWindow.document.write ("<img src='");
	NewWindow.document.write (Picture);
	NewWindow.document.write ("' border='0'>\n");
	NewWindow.document.write ("</td></tr>\n</table>\n");
	NewWindow.document.write ("</td>\n</tr>\n<tr>\n");
	NewWindow.document.write ("<td align='center' valign='bottom'>\n");
	NewWindow.document.write ("<br /><center><form><input type='button' value='"+Caption+"' style='font-family:Verdana; font-size:10px' onClick='self.close()'></form>");
	NewWindow.document.write ("</td>\n</tr>\n</table>\n");
	NewWindow.document.write ("</body>\n</html>\n");
	NewWindow.document.close();
	NewWindow.resizeTo(xsize,ysize); 
}


function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function ShowHide(dname) {
	if (document.getElementById(dname).style.display == 'block') {
		document.getElementById(dname).style.display = 'none';
	} else {
		document.getElementById(dname).style.display = 'block';
	}
}