function openBigPhoto (theImage, width, height, caption) {	var theWidth = eval(width) + 10;	var theHeight = eval(height) + 10;				photoWindow = window.open("","Photo","width=375,height=375,resizable");	photoWindow.document.write("\<html\>\<title\>Leslie Berry's Photo Album\<\/title\>");	photoWindow.document.write("\<body bgcolor=\"#ffffff\" text=\"#000000\" topmargin\=\"0\" leftmargin\=\"0\" marginheight\=\"0\" marginwidth\=\"0\"\>");	photoWindow.document.write("\<table border=\"0\" width=\"100\%\" height=\"100\%\" align\=\"center\" valign=\"middle\"\>");		photoWindow.document.write("\<tr\>\<td align\=\"center\" valign=\"middle\"\>\<img src\=\"" + theImage + "\" width\=\"" + width + "\" height\=\"" + height + "\"\>");	photoWindow.document.write("\<br clear\=\"all\"\>");	photoWindow.document.write("\<p style\=\"font-family: verdana, sans-serif; font-size: 11px;\"\>" + caption + "\<\/p\>");	photoWindow.document.write("\<\/td\>\<\/tr\>");	photoWindow.document.write("\<\/table\>")	photoWindow.document.write("\<\/body\>");	photoWindow.document.write("\<\/html\>");	photoWindow.document.close();}