//
//
//
function popup_file(lnk_fisier, noimg) 
{
    win_popup = window.open(lnk_fisier,
	'open_window','menubar=0,resizable=1,scrollbars=1,width=540,height=500');
    win_popup.moveTo(screen.width/2-270,screen.height/2-255);
	if (noimg != 1)
	{
		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();
	}
}

