function bild (welcheSeite,breite,hoehe) {
	breite=parseInt(breite)-5;
	hoehe=parseInt(hoehe)-5;
	eval("var fenster=window.open('"+welcheSeite+"','fenster','width="+breite+",height="+hoehe+",left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes')");
	/*fenster.resizeTo(breite,hoehe);*/
	fenster.moveTo(10,10);
	fenster.focus();
}
