        
// ------------------------------------------------------------------------
function someFLV(flvurl) // 2.0.0
        {var date = new Date();
         var time = (date.getHours() < 10) ? "0" + date.getHours() : date.getHours();
         var width = 50;
         var height = 50;
         var posX = 5;
         var posY = 5;
         var url = "";
         
         var imagePopUp = window.open("", "someFLVPopup43", "width=485,height=370,scrollbars=0,resizable=0");
         
         imagePopUp.document.open();
         
         imagePopUpContent = '\n<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" id="video" width="480" height="360">\n<param name="movie" value="./fileadmin/flvplayer_4_3.swf?swffile='+flvurl+'">\n<param name="loop" value="true">\n<param name="menu" value="true">\n<param name="quality" value="high">\n<param name="bgcolor" value="#FFFFFF">\n<embed src="./fileadmin/flvplayer_4_3.swf?swffile='+flvurl+'" loop="true" menu="true" quality="high" bgcolor="#FFFFFF" width="480" height="360" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">\n</object>';
                 
         imagePopUp.document.write('<html><head><title>SW Umwelttechnik - ZoomImage</title>');
         imagePopUp.document.write('<style type="text/css"><!--\n' +
                                        '    body           { background-color: #FFFFFF; margin : 0;}\n' +
                                        '    .text, .textHi { font-family: "monotype.com", "courier new", courier, mono; }\n' +
                                        '    .text          { color: #669999; }\n' +
                                        '    .textHi        { color: #66CCCC; }\n' +
                                        '--></style>');
         imagePopUp.document.write('</head><body>\n<center>');
         imagePopUp.document.write(imagePopUpContent);
         imagePopUp.document.write('</center></body></html>');
         imagePopUp.document.close();
	     imagePopUp.focus()         
        }
        
