function bildpopup(bild,x,y)
		{
		var ausgabe = window.open("","bild","toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+x+",height="+y);
		ausgabe.document.open("text/html")
		ausgabe.document.writeln("<html>");
		ausgabe.document.writeln("<meta http-equiv=\"pragma\" content=\"no-cache\">");
		ausgabe.document.writeln("<body bgcolor=\"#ffffff\" onload=\"window.focus();\" topmargin=0 leftmargin=0 marginheight=0>");
		ausgabe.document.writeln("<center><img src=\""+bild+"\" border=0>");
		ausgabe.document.writeln("</body>");
		ausgabe.document.writeln("</html>");
		ausgabe.document.close()
		}

function seitenpopup(location,x,y)
		{
		window.open(location,"seite","toolbar=0,location=0,status=0,menubar=0,scrollbars=visible,resizable=0,width="+x+",height="+y);
		}


