function bild(img_url, img_title, img_width, img_height)
{
	h_offset = 100;
	w_offset = 32;
  	wnd = window.open("leer.html","Bild" + ZFZ(),"width=" + (img_width + w_offset) + ",height=" + (img_height + h_offset) +",innerWidth=" + (img_width + w_offset) + ",innerHeight=" + (img_height + h_offset) +",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,dependent=1");

	img_src = img_url;
	img_dim = "width=\"" + img_width + "\" height=\"" + img_height + "\" alt=\"" + img_title + "\"";

	with(wnd.document)
  {
        open("text/html");
        writeln("<html><head><title>AMICAL alpin 2002 Manaslu Expedition</title>");
        writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"amical.css\">");
		writeln("<style type=\"text/css\"><!--");
		writeln("#bild{align:center; top:16px; left:16px; position:absolute; visibility:visible; z-index:2;}");
		writeln("#bald{align:center; top:50px; left:80px; position:absolute; visibility:visible; z-index:1;}");
		writeln("--></style>");
        writeln("</head><body background=\"../../images/graphics/back2.gif\">");
		writeln("<div id=\"bald\"><img src=\"images/bildladen.gif\" width=\"245\" height=\"84\" border=\"0\"></div>");
		writeln("<div id=\"bild\">");
		writeln("<table border=\"0\" align=\"center\" cellspacing=\"0\" cellpadding=\"0\" width=\"" + img_width + "\" height=\"" + img_height + "\">");
		writeln("<tr><td align=\"center\" valign=\"middle\">");
		writeln("<table cellspacing=\"0\" cellpadding=\"0\" border=\"0\" background=\"" + img_src + "\" align=\"center\">");
		writeln("<tr><td><img src=\"images/pixel.gif\" " + img_dim + " border=\"0\"></td></tr></table></td></tr>");
		writeln("<tr><td class=\"footerb\">" + img_title + "</td></tr>");
		writeln("<tr><td align=\"right\" valign=bottom height=\"30\"><form><input type=\"button\" value=\"Fenster schlie&szlig;en\" onclick=\"self.close()\"></form></td></tr>");
		writeln("</table></div></body></html>");
        close();
  }
  wnd.focus();
}

function ZFZ()
{
         zz = new Date();
         zfz = zz.getTime();
         return zfz;
}

