

function funcViewMovie(strSrc,title)
{
var objNewWindow=window.open('','name','height=288,width=512'); //LA LARGEUR ET LA HAUTEUR DU POPUP (pour WMV ajouter +66px pour la hauteur) 
objNewWindow.document.write('<html><head><title>'+title+'</title>');
objNewWindow.document.write('</head><body  leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
objNewWindow.document.write('<object type="application/x-shockwave-flash" data="videos/player_flv_maxi.swf" width="512" height="288">');
objNewWindow.document.write('<param name="movie" value="videos/player_flv_maxi.swf" /><param name="allowFullScreen" value="true" />');
objNewWindow.document.write('<param name="FlashVars" value="flv='+strSrc+'&amp;width=512&amp;height=288&amp;autoplay=1&amp;showstop=1&amp;showvolume=1&amp;showtime=1&amp;showplayer=always&amp;showfullscreen=1" /></object>');
objNewWindow.document.write('</body></html>');
objNewWindow.document.close();
}
