function bopen(bildname,b,h){
	var bn="bild";
	
	var eigenschaften="";
	var bildstring="";
	var sstring="";
	var bildfenster="";

 	b+=20;
	h+=40;
	bildstring="<IMG SRC='"+bildname+"'>"
	sstring="<br><a href='javascript:window.self.close()'></a>";
	eigenschaften="toolbar=no,status=no,menubar=no,resizable=no,height="+Math.round(h)+",width="+Math.round(b)+",screenX=50,screenY=50'";
	bildfenster=window.open('','ihf',eigenschaften);
	bildfenster.document.open();
	bildfenster.document.write('<html><head><title>www.ihf.info</title></head><body>');
	bildfenster.document.write(bildstring);
	bildfenster.document.write(sstring);
	bildfenster.document.write('</body></html>');
	bildfenster.document.close();
	bildfenster.moveTo(50,50);
	bildfenster.focus();

}


function openWin(strUrl,strName,intWidth,intHeigt)
{
	var intWidth = intWidth;
	var intHeight = intHeigt; 
	var intLeft = ((screen.width - intWidth) / 2);
	var intTop = ((screen.height - intHeight) / 2);
	var strParam = "scrollbars=auto,left = " + intLeft + ", top = " + intTop + ", width= " + intWidth + " ,height=" + intHeight +  ",location = no, menubar = no, resizable = no, status = no, toolbar = no";
	oWin = window.open(strUrl, strName, strParam);
	oWin.focus();
}