function openBigPhoto (theImage, width, height, caption) {
	var theWidth = eval(width) + 10;
	var theHeight = eval(height) + 10;
	
	if (parent.frames && parent.frames.length > 0) {
		//alert("Frames available: " + parent.frames.length);
		lastFrame = parent.frames.length - 1;
		photoWindow = parent.frames[lastFrame];
	} else {
		photoWindow = window.open("","Photo","width=350,height=350,resizable");
	}

	photoWindow.document.write("\<html\>\<title\>Lis Harvey'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("\<p style\=\"font-family: verdana, sans-serif; font-size: 10px;\"\>" + "Keep this window open.<br />  Just click other photos to load them here." + "\<\/p\>");
	photoWindow.document.write("\<\/td\>\<\/tr\>");
	photoWindow.document.write("\<\/table\>")
	photoWindow.document.write("\<\/body\>");
	photoWindow.document.write("\<\/html\>");
	photoWindow.document.close();
}
