function displayPhoto(url, picWidth, picHeight, caption) {
	var winName="otfPopup";
	var options="toolbar,scrollbars,status,resizable,width=500,height=500";
	popupWin=window.open(url, winName, options);
	popupWin.document.writeln("<html>");
	popupWin.document.writeln("<head>");
	popupWin.document.writeln("<title>Journey to the Holy Land - Photo Album</title>");
	popupWin.document.writeln("<link rel='stylesheet' type='text/css' href='../nes.css'>");
	popupWin.document.writeln("</head>");
	popupWin.document.writeln("<body background='../images/bg_wall.jpg' text='black' link='blue' vlink='navy' alink='blue'>");
	popupWin.document.writeln("<br>");
	popupWin.document.writeln("<p align='center'><img src='"+url+"' width='"+picWidth+"' height='"+picHeight+"' alt='"+url+"'></p>");
	popupWin.document.writeln("<p align='center'>"+caption+"</p>");
	popupWin.document.writeln("<form name='form2'>");
	popupWin.document.writeln("<center><input type='button' name='closeBtn' value='Close Window' onClick='window.close();'></center>");
	popupWin.document.writeln("</form>");
	popupWin.document.writeln("</body>");
	popupWin.document.writeln("</html>");
	popupWin.document.close();
	if (this.focus) {
		popupWin.focus();
	}
}
