// JavaScript Document

function ShowPhoto(theFile,theTitle) {
	var theOptions = "top=50,left=100,width=600,height=550,scrollbars=no,toolbar=no,location=no,menubar=no,status=no";
	var theWin = window.open("","PhotoWindow",theOptions);
	with (theWin.document) {
		open();
		write("<html>");
		write("<head>");
		write("<title>"+theTitle+"</title>");
		write("<style type='text/css'>");
		write("  body { background-color:black; text-align: center; }");
		write("  a { color:#D00; }");
		write("  a:hover { color:#F30; }");
		write("</style>");
		write("</head>");
		write("<body>");
		write("<img alt='"+theTitle+"' src='"+theFile+"' height='500' width='550' />");
		write("<p><a href='javascript:window.close();'>Close Window</a></p>");
		write("</body>");
		write("</html>");
		close();
	}
}
