// JavaScript Document
function showPhotoVer(imageName,myStr){
	var win=window.open('blank_ver.html','fullImage','top=50,left=270,resizable=no,height=600,width=450,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:60px;'>"+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();}
