/*	This is the script that will open a popup window for the  	requested photo.*///  ===================================================//  This is the showPicture(x,y,z) function//	This function will display the larger version of the//	image begin called.// 	It requires the image name which will be concatenated//	with the -large.jpg as well as the attributes of the//  larger image.//  ===================================================function showPicture(pictureID, sizeWidth, sizeHeight){	imgValue = "images/gallery/" + pictureID + "-large.jpg";	configuration  = eval("'width=" + sizeWidth + ",height=" + sizeHeight + "'");		imgID  = "<html>\n\<head>\n\t<title>" + pictureID + "</title>\n</head>\n";	imgID += "<body topmargin=\"0\" leftmargin=\"0\" rightmargin=\"0\"";	imgID += " bottommargin=\"0\" marginwidth=\"0\" marginheight=\"0\">\n\n";	imgID += "<table width=\"100%\" height=\"100%\" cellpadding=\"0\"";	imgID += " cellspacing=\"0\" border=\"0\"><tr><td valign=\"middle\"";	imgID += " align=\"center\">\n\t";	imgID += "<img src=\"" + imgValue + "\" alt=\"" + pictureID + "\" width=\"";	imgID += sizeWidth + "\" height=\"" + sizeHeight + "\" border=\"0\">\n";	imgID += "</td></tr></table>\n\n";	imgID += "</body>\n</html>";			thisPicture = window.open('', pictureID, configuration);     thisPicture.document.write(imgID);    thisPicture.document.close();		} // end of showPicture(x,y,z) function
