<!-- Display Photos in a different window. -->
function photoDisp(pic, W, H, descText) {
    photoBody = '<BODY BGCOLOR="black">' +
                '<FONT COLOR="white">' +
                '<CENTER>' +
                '<I>'+descText+'</I><BR><BR>' +
                '<A HREF="#" ONCLICK="window.close()"' +
                'ONMOUSEOVER=\'self.status="Close this Photo";return true\'' +
                '>[CLOSE WINDOW]</A><BR><BR>' +
		'</CENTER>' +
		'<CENTER>' +
		'<IMG SRC="'+pic+'" ALIGN="center">' +
                '<BR><BR>' +
                '<I>'+descText+'</I><BR><BR>' +
                '<A HREF="#" ONCLICK="window.close()"' +
                'ONMOUSEOVER=\'self.status="Close this Photo";return true\'' +
                '>[CLOSE WINDOW]</A>' +
                '</CENTER>' +
                '</BODY>' +
                '</HTML>'
    photoWindow = window.open
    ("","PhotoWindow","width=" + W + ",height=" + H +",status=Yes")
    photoWindow.document.open()
    photoWindow.document.write(photoBody)
    photoWindow.document.close()
}
