function OpenNewFlash(Flash,fl_h,fl_b,Breit,Hoch,Name)
	{	xsize = Breit+35;	
		ysize = Hoch+25; 
		ScreenWidth = screen.width;
		ScreenHeight = screen.height;
		xpos = (ScreenWidth/2)-(xsize/2);
		ypos = (ScreenHeight/2)-(ysize/2);

        	NewWindow=window.open("","Flash","height="+ysize+",width="+xsize+",scrollbars=no,resizable=no,top="+ypos+",left="+xpos+"");
        	NewWindow.document.write ("<html><head><title>"+Name+"</title>");
        	NewWindow.document.write ("</head>");
        	NewWindow.document.write ("<body bgcolor='#BFD9F7'>");
        	NewWindow.document.write ("<table align='center'><tr>");
        	NewWindow.document.write ("<td align='center' valign='top'>");
        	NewWindow.document.write ("<table border='0' cellpadding='0' cellspacing='1'><tr><td align='center'>");
          NewWindow.document.write ("<EMBED SRC='");
          NewWindow.document.write (Flash);
          NewWindow.document.write ("' quality='high' ");
          NewWindow.document.write ("bgcolor='#BFD9F7' ");
          NewWindow.document.write ("width='");
          NewWindow.document.write (fl_h);
          NewWindow.document.write ("' height='");
          NewWindow.document.write (fl_b);
          NewWindow.document.write ("' loop='true' ");
          NewWindow.document.write ("type='application/x-shockwave-flash'>");
        	NewWindow.document.write ("</tr></table>");
        	NewWindow.document.write ("</td></tr><tr>");
        	NewWindow.document.write ("<td align='center' valign='bottom'>");
        	NewWindow.document.write ("<br><center><form><input type='button' value='Fenster Schliessen / Sluit venster' style='font-family: Verdana; font-size: 10px' onClick='self.close()'>");
        	NewWindow.document.write ("</td></tr></table>");
        	NewWindow.document.write ("</form></body></html>");
        	NewWindow.document.close(); }


