function OpenNewWindow(picture, width, height) {
     xsize = width + 35;
     ysize = height + 45;
     ScreenWidth = screen.width;
     ScreenHeight = screen.height;
 
     xpos = (ScreenWidth / 2) - (xsize / 2);
     ypos = (ScreenHeight / 2) - (ysize / 2);
     
       Bildpopup = window.open("","picture","height=" + ysize + ",width=" + xsize + ",scrollbars=no,resizeable=no,toolbar=no,menubar=no,location=no,top=" + ypos + ",left=" + xpos);
     Bildpopup.document.write("<html><head><title>Bildanzeige</title></head>");
     Bildpopup.document.write("<body bgcolor='#cccccc' onload='focus();'>");
     Bildpopup.document.write("<table align='center' border='0'><tr>");
     Bildpopup.document.write("<td align='center' valign='top'>");
     Bildpopup.document.write("<img src='" + picture + "' border='1'>");
     Bildpopup.document.write("</td></tr><tr>");
     Bildpopup.document.write("<td align='center' valign='bottom'>");
     Bildpopup.document.write("<input type='button' value='FENSTER SCHLIESSEN' style='font-family: Verdana; font-size: 10px' onClick='self.close()'>");
     Bildpopup.document.write("</td></tr></table>");
     Bildpopup.document.write("</body></html>");
     Bildpopup.document.close();
 }


function ShowVideo(video, width, height) {
     xsize = width ;
     ysize = height + 45;
     ScreenWidth = screen.width;
     ScreenHeight = screen.height;
 
     xpos = (ScreenWidth / 2) - (xsize / 2);
     ypos = (ScreenHeight / 2) - (ysize / 2);
     
       Bildpopup = window.open("","picture","height=" + ysize + ",width=" + xsize + ",scrollbars=no,resizeable=no,toolbar=no,menubar=no,location=no,top=" + ypos + ",left=" + xpos);
     Bildpopup.document.write("<html><head><title>Video abspielen</title></head>");
     Bildpopup.document.write("<body bgcolor='#cccccc' onload='focus();'>");
     Bildpopup.document.write("<table align='center' border='0'><tr>");
     Bildpopup.document.write("<td align='center' valign='top'>");
/*     
    Bildpopup.document.write("<embed src='videos/flvplayer.swf' width='" +width +"' height='" + height + "' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'"+
"flashvars='file="+video+"&image=videos/well_Vorschau.jpg&backcolor=0xF6BD74&autostart=true' />");*/
    Bildpopup.document.write("<embed src='videos/flvplayer.swf' width='" +width +"' height='" + height + "' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer'"+
"flashvars='file="+video+"&backcolor=0xF6BD74&autostart=true' />");
     Bildpopup.document.write("</td></tr><tr>");
     Bildpopup.document.write("<td align='center' valign='bottom'>");
     Bildpopup.document.write("<input type='button' value='FENSTER SCHLIESSEN' style='font-family: Verdana; font-size: 10px' onClick='self.close()'>");
     Bildpopup.document.write("</td></tr></table>");
     Bildpopup.document.write("</body></html>");
     Bildpopup.document.close();
 }

