//
//
//
function popup_file(lnk_fisier, noimg) 
{
    win_popup = window.open(lnk_fisier,
	'open_window','menubar=0,resizable=1,scrollbars=1,width=700,height=600');
    win_popup.moveTo(screen.width/2-595,screen.height/2-495);
	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('<img src=\"' + lnk_fisier + '\">');
	win_popup.document.writeln('</td></tr></table>');
	win_popup.document.writeln('<\/center> <\/body> <\/html>');
	win_popup.document.close();
}

