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>");
	if(myStr == "Gallery Page Two"){
		win.document.write("<h3></h3>");}
	else if(myStr == "Penmanship Of Light : New Vision"){
		win.document.write("<h5 style='text-align:center;font-family:georgia;color:#000066;'>Photographers : Shahed Artists</h5>");}
	else if(myStr == 'Scattered Notes : New Vision'){
		win.document.write("<h5 style='text-align:center;font-family:georgia;color:#000066;'>Photographers : Shahed Artists</h5>");}
	else{
		win.document.write("<h5 style='text-align:center;font-family:georgia;color:#000066;'>Photograph and design by : Gholam Hossein-Montajam</h5>");}
	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();}
