function showPage(image) {
	var wide = screen.width;
	var high = screen.height;
	wide = wide - (wide/10);
	high = high - (high/10);
	
	var pic = '../angevine/' + image + '.JPG';
	var img = '<img src="' + pic + '" alt="Image ' + image + '" title="USS Abbot (DD629) Image" />';
	
	var caption = document.getElementById(image).innerHTML;
	caption = ('<p class="angevineCaption">' + caption + '</p>');
	
	var bye = '<form method="post"><input type="button" value="Close Window" onclick="window.close()"></form>';
	
	var doctype = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
	
	var meta = '<meta name="description" content="USS Abbot (DD629) image archive" /><meta name="author" content="Walter Baranger" />';
	meta = meta + '<meta name="keywords" content="abbot,archive,images,DD629,destroyer" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />';
	
	var text = doctype;
	text = text + '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"><head>';
	text = text + meta;
	text = text + '<title>Image ' + image + '</title><link rel="stylesheet" href="../DD629.css" type="text/css" media="all"></head>';
	text = text + '<body class="angevineImg">';
	text = text + img + caption + bye;
	text = text + '</body></html>';
	target = window.open('','angevine','width='+wide+',height='+high+',status=yes,scrollbars=yes,resizable=yes,toolbar=yes,menubar=yes');
	target.document.write(text);
	}
