function openBigPhoto (theImage, width, height, caption, theStylesheet) {
	var theWidth = eval(width) + 100;
	var theHeight = eval(height) + 100;
	var winFeatures = "width="+theWidth+",height="+theHeight+",resizable"
	
	photoWindow = window.open("","Photo",winFeatures);
	
	photoWindow.document.write("\<html\>\<head\>\<title\>Photo\<\/title\>");
	photoWindow.document.write("\<link rel=\"stylesheet\" href=\""+theStylesheet+"\" type=\"text\/css\" \/\>");
	photoWindow.document.write("\<\/head\>\<body\>");
	photoWindow.document.write("\<div style=\"margin-left: auto; margin-right: auto; text-align: center;\"\>");
	
	photoWindow.document.write("\<img src\=\"" + theImage + "\" width\=\"" + width + "\" height\=\"" + height + "\"\>");
	photoWindow.document.write("\<br clear\=\"all\"\>");
	photoWindow.document.write("\<p\>" + caption + "\<\/p\>");
	photoWindow.document.write("\<p\>\<em\>Note: You don't have to close this window if you want to view other photos.\<\/em\>\<\/p\>");
	photoWindow.document.write("\<\/div\>")
	photoWindow.document.write("\<\/body\>");
	photoWindow.document.write("\<\/html\>");
	photoWindow.document.close();
	
	photoWindow.focus();
}
