function Player(flv, name, w, h){
var winl = (screen.width-w)/2;
var wint = (screen.height-h)/2;
features = "toolbar=no,location=no,directories=no,status=no,menubar=no," +"scrollbars=no,resizable=no,width="+ w +",height="+ h +",left="+winl +",top="+wint;

 pl = window.open ('',"Player",features);
 pl.document.write("<html><head><title>" + name + " Player</title>");
 pl.document.write ("<body bgcolor=white><center>");
 pl.document.write("<table width=100% height=100%>");
 pl.document.write("<tr><td align=center valign=middle>");
 pl.document.write ("<font size=2 font color=black face=verdana>" + name + "</font><br><br>");

 pl.document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0' width='470' height='320'>");
 pl.document.write("<param name='flashvars' value='file=" + flv + "&autostart=true' />");
 pl.document.write("<param name='movie' value='/player/player.swf' />");
 pl.document.write("<embed src='/player/player.swf' width='470' height='320' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/go/getflashplayer' flashvars='file=" + flv + "&autostart=true' />");
 pl.document.write("</object>");

 pl.document.write("</td></tr>");
 pl.document.write("<tr><td align=center valign=middle>");
 pl.document.write("<a href=# onClick=window.close();>");
 pl.document.write("<font size=1 font color=black face=verdana>(закрыть)</font></a>");
 pl.document.write("</td></tr>");
 pl.document.write("</table></body></html>");
 pl.document.close();
}
