//
//
//
function popup_file_galerie(lnk_fisier, noimg) 
{
    win_popup = window.open(lnk_fisier,
	'open_window','menubar=0,resizable=1,scrollbars=1,width=600,height=650');
    win_popup.moveTo(screen.width/2-300,screen.height/2-300);
	if (noimg != 1)
	{
		win_popup.document.writeln('<html> <body> <center>');
		win_popup.document.writeln('<link href=\"/style/header_v2.css\" rel=\"stylesheet\" type=\"text/css\">');
		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('<img src=\"' + lnk_fisier + '\">');
		win_popup.document.writeln('</td></tr></table>');
		win_popup.document.writeln('<\/center> <\/body> <\/html>');
		win_popup.document.close();
	}
}
