function showPhoto(imageName,myStr)
{
	var win=window.open('blank.html','fullImage','top=160,left=200,resizable=no,height=470,width=600,status=yes');
	win.document.open();
	win.document.write("<html>");
	win.document.write("<head>");
	win.document.write("</head>");
	win.document.write("<body>");
	win.document.write("<h4 style='font-family:georgia;color:000066;text-indent:35px;'>"+myStr+"</h4>");
	win.document.write("<p style='text-align:center;'><img src='img_large/"+imageName+"' /></p>");
	win.document.write("<h5 style='text-align:center;font-family:georgia;color:#000055;'>Photograph and design by : Gholam Hossein-Montajam</h3>");
	win.document.write("<p style='text-align:center;font-family:georgia;color:#000;font-size:12px;font-weight:bold;'>Copyright &copy; 2004-2012 Shafafgallery. All rights reserved</p>");
	win.document.write("</body>");
	win.document.write("</html>");
	win.document.close();
}  

