<?xml version="1.0" encoding="utf-8"?>
<?php
require ("functions.php")
?>
<?php
preBody("Gallery Image");
navDiv("Gallery Image","Gallery Image");
?>
<!--In future use php get to use value-->
	<div class="main">
<?php
$pictureName = $_GET["picture"];
echo "
		<p class=\"center\">
			<img src=\"images/gallery_images/$pictureName\" alt=\"This should show $pictureName\" 
				height=\"auto\" width=\"100%\" title=\"$pictureName\" />
		</p>
";
?>	
	</div>	
	
	
<?php
footerDiv("11/23/2012");
?>