function popup(pfad, width, height)
{
default_width=820;
default_height=620;

width = (width) ? width += 20 : default_width;
height = (height) ? height += 20 : default_height;

var x=window.open('', 'Zoom', 'dependent=yes,screenX=20,screenY=20,toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width='+(width)+',height='+(height));
	
	x.document.write("<html>\n");
	x.document.write("<head>\n");
	x.document.write("<title>Bild</title>\n");
	x.document.write('<style type="text/css">\n');
	x.document.write("html,body{margin:10px;padding:0;overflow:hidden;background-color:#587CBA;}\n");
	x.document.write("</style>\n");
	x.document.write("</head>\n\n");
	
	x.document.write("<body>\n");
	x.document.write('<img src="'+pfad+'" alt="" onclick="window.close();">\n');
	x.document.write("</body>\n");
	x.document.write("</html>");
	x.document.close();
	x.focus();
	
return false;
}

function popup_termin(pfad)
{
width=620;
height=400;

var x=window.open('', 'Zoom', 'dependent=yes,screenX=20,screenY=20,toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+(width)+',height='+(height));

	x.document.write("<html>\n");
	x.document.write("<head>\n");
	x.document.write('<meta http-equiv="refresh" content="0; URL='+pfad+'">');
	x.document.write("<title>Termin</title>\n");
	x.document.write("</head>\n\n");
	
	x.document.write("<body>\n");
	x.document.write("</body>\n");
	x.document.write("</html>");
	x.document.close();
	x.focus();


	
return false;
}
