function imgpopup(imgname, imgwidth, imgheight)
{
	
	var basepath = "/winter/news_info/partybilder/";
	
	windowoptions = "toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes";
	windowwidth = imgwidth + 40;
	windowheight = imgheight + 120;

	imgwindow=window.open("", "nolimits", windowoptions + ',width=' + windowwidth + ',height=' + windowheight);
	imgwindow.focus();
	imgwindow.document.open();
	
	with(imgwindow)
	{
		document.write("<html><head>");
		document.write("<title>no limits!: "+imgname+"</title>");
		document.write('<style type="text/css"> \
						<!-- \
						.bg {  background-image: url(/winter/news_info/partybilder/load_01.gif); background-repeat: no-repeat; background-position: center center} \
						--> \
						</style> \
						</head>');
		document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<p align=\"center\"><a href=\"javascript:self.close()\" title=\"close\"><br>");
		document.write("<img src=\""+basepath+imgname+"\" width=\""+imgwidth+"\" height=\""+imgheight+"\" border=\"0\"></a></p>");
		document.write("<p align=\"center\">Bild: "+imgname+"</p>");
		document.write("<p align=\"center\"><a href=\"javascript:self.close()\">close</a></p>");
		document.write("</body></html>");
	}
	imgwindow.document.close();
}

