<!-- Modification Date:  -->
<!-- hide from non-Javascript-enabled browsers
function openimage(title, desc, src, port) {
	if (port == true)
	{
		picWindow = window.open('','', 'left=20,top=20,width=700,height=775,toolbar=0,resizable=1,scrollbars=1');
	}
	else
	{
		picWindow = window.open('','', 'left=20,top=20,width=700,height=625,toolbar=0,resizable=1');
	}
	picWindow.document.writeln('<html>');
	picWindow.document.writeln('<head>');
	picWindow.document.writeln('   <title>' + title + '</title>');
	picWindow.document.writeln('   <link rel="stylesheet" type="text/css" href="/photo_albums/css/pic.css" />');
	picWindow.document.writeln('</head>');
	picWindow.document.writeln('<body>');
	picWindow.document.writeln('<h1 class="title">' + title + '</h1>');
	picWindow.document.writeln('<div id="photograph">');
	picWindow.document.writeln('   <a href="javascript:window.close();"><img src="' + src + '" alt="' + desc + '" title="' + title + '" /></a>');
	picWindow.document.writeln('</div>');
	picWindow.document.writeln('<p class="caption">' + desc + '</p>');
	picWindow.document.writeln('<p class="caption"><a href="javascript:window.close();">Close Window</a></p>');
	picWindow.document.writeln('</body>');
	picWindow.document.writeln('</html>');
	}
// done hiding -->

