//
//
//
function popup_video(lnk_fisier, noimg) 
{
    win_popup = window.open(lnk_fisier,
	'open_window','menubar=0,resizable=1,scrollbars=1,width=760,height=520');
    win_popup.moveTo(screen.width/2-760,screen.height/2-520);
	win_popup.document.writeln('<html> <body> <center>');
	win_popup.document.writeln('<table width=\"100%\" height=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">');
	win_popup.document.writeln('<tr><td align=\"center\" valign=\"middle\">');
	win_popup.document.writeln('<OBJECT ID=\"Mediaplayer1\" width=740 height=500 classid=\"CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95\" codebase=\"http://activex.microsoft.com/activex/ controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902\" standby=\"Loading Microsoft Windows Media player components...\" type=\"application/x-oleobject\">');
	win_popup.document.writeln('<PARAM NAME=\"FileName\" VALUE=\"' + lnk_fisier + '\">');
	win_popup.document.writeln('<PARAM NAME=\"animationatStart\" VALUE=\"true\">');
	win_popup.document.writeln('<PARAM NAME=\"transparentatStart\" VALUE=\"true\">');
	win_popup.document.writeln('<PARAM NAME=\"autoStart\" VALUE=\"true\">');
	win_popup.document.writeln('<PARAM NAME=\"showControls\" VALUE=\"true\">');
	win_popup.document.writeln('<EMBED type=\"application/x-mplayer2\" pluginspage = \"http://www.microsoft.com/Windows/Mediaplayer/\" SRC=\"' + lnk_fisier + '\" name=\"Mediaplayer1\" width=740 height=500 AutoStart=true>');
	win_popup.document.writeln('</EMBED>');
	win_popup.document.writeln('</OBJECT> ');
	win_popup.document.writeln('</td></tr></table>');
	win_popup.document.writeln('<\/center> <\/body> <\/html>');
	win_popup.document.close();
}
