<!-- script language="JavaScript" -->

var ImgBig = null;
function MarestePoza( imgFile, titlu, latime, inaltime )
{
	if( ImgBig != null )
		ImgBig.close();
	ImgBig = window.open( '', 'PozaMare', 'width=' + latime +', height=' +  inaltime );
ImgBig.document.writeln(" <html> ");
ImgBig.document.writeln(" <head> ");

ImgBig.document.writeln(" <link href='css/style.css' rel='stylesheet' type='text/css'> ");
ImgBig.document.writeln(" <body> ");
ImgBig.document.writeln("  <table width='100%' border='0' cellspacing='0' cellpadding='0'> ");
ImgBig.document.writeln("    <tr> ");
ImgBig.document.writeln("      <td align='center' valign='middle'> ");
ImgBig.document.writeln("		<table width='100%' border='0' cellspacing='0' cellpadding='3'> ");
ImgBig.document.writeln("    		<tr>  ");
ImgBig.document.writeln("      <td align='center' valign='middle'><img src='" + imgFile +"'></td> ");
ImgBig.document.writeln("    		</tr> ");
ImgBig.document.writeln("    		<tr class='titleGrup'>  ");
ImgBig.document.writeln("    			<td height='30' align='center'>" + titlu + "</td> ");
ImgBig.document.writeln("        	</tr> ");
ImgBig.document.writeln("      </table> ");
ImgBig.document.writeln("    </td> ");
ImgBig.document.writeln("    </tr> ");
ImgBig.document.writeln("  </table> ");
ImgBig.document.writeln("</body> ");
ImgBig.document.writeln("</html> ");
}
<!-- /script -->

