// JavaScript Document
function pic(photo)
{
	var zWindow;
	zWindow=window.open("", "newwin", "width=460,height=375,left=300,top=200,toolbar=0,location=0,scrollbars=0,status=no");
	zWindow.document.open();
	zWindow.document.write("<HTML><HEAD>");
	zWindow.document.write("<TITLE>ERA Cyprus</TITLE>");
	zWindow.document.write("<link href='css/styles.css' rel='stylesheet' type='text/css'/>");
	zWindow.document.write("</HEAD>");
	zWindow.document.write('<body bgcolor="#ffffff" style="margin:5px 0px 0px 0px;"><center><div align="center" style="height:350px;">');
	zWindow.document.write("<img style='margin-left:1px;' src=images/" + photo + "></div></center>");
	zWindow.document.write("<center><input type=button value=Close class='popup_bttn' onclick='window.close()'></center>");
	zWindow.document.write("</BODY></HTML>");
}

