	function openPopupWin(bild,pic_width,pic_height,win_width,win_height) {
		text='<html>\n<head>\n<meta http-equiv=\"content-type\" content=\"text/html;charset=iso-8859-1\">\n<title>Kokosweberei Hilger, Olbersdorf</title>';
		text+='\n<script language=\"javascript\">\n\twindow.moveTo((screen.width*0.1),25);\n</script>\n</head>';
		text+='\n<body bgcolor=\"D3D7BC\" link=\"black\">\n';
		text+='\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"100%\" width=\"100%\">';
		text+='\n<tr><td valign=\"middle\" align=\"center\">';
		text+='\n<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" height=\"auto\" width=\"'+pic_width+'\">';
		text+='\n\t<tr height=\"auto\">\n\t\t<td align=\"center\" ><img height=\"'+pic_height+'\" width=\"'+pic_width+'\" src=\"'+bild+'\"></td>\n\t</tr>';
		text+='\n</table>';
		text+='\n</td>	</tr></table>';	
		text+='\n</body>\n</html>';

		if (window.neww) {
			if(neww.closed) openIt=true; else {openIt=true; neww.close();}
		} else openIt=true;
		if (openIt) {
			par='width='+win_width+',height='+win_height+',resizable=no,scrollbars=no,dependent=yes';
			neww = open('',"neww",par);
			neww.document.write(text);
			neww.focus();
		} else {
			neww.document.write(text);
			neww.focus();
		}
	}
	
