function LoadPic(file,laenge,breite)
   
	{
	var temp1=file.split(".");
	laenge+=1
	breite+=1
 	var fenster=window.open("",temp1[0],"height="+breite+",width="+laenge+",scrollbars=no,resizable=no,location=no,toolbar=no,directories=no,status=no,menubar=no");
	fenster.document.open();
	fenster.document.writeln("<HTML><HEAD><TITLE>Bauunternehmung Schlang</TITLE></HEAD>");
	fenster.document.writeln("<BODY BGCOLOR=FFFFFF MARGINWIDTH=0 MARGINHEIGHT=0 TOPMARGIN=0 LEFTMARGIN=0 onblur=window.close()>");
	fenster.document.writeln("<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0 WIDTH=100% HEIGHT=100% ALIGN=CENTER><TR>");
	fenster.document.writeln("<TD ALIGN=CENTER VALIGN=MIDDLE><IMG SRC='../res/"+file+"'></TD>");
	fenster.document.writeln("</TR></TABLE></BODY></HTML>");
	fenster.document.close();                    
   }
