				  function open_img(name, winheight,winwidth)
					{
					var win=window.open('','popup',"resizable=no,height=" + winheight + ",width=" + winwidth + ",scrollbars=no");
					 output="";
					 output+="<html><head><title>";
					 output+="Deep South Diving Image Gallery";
					 output+="</title><link href='style.css' rel='stylesheet' type='text/css' /></head><body>";
					 output+="<img src=gallery/" + name + " />";
					 output+="<p class=footer align=center><a href=javascript:window.close();>Close Window</a></p>";
					 output+="</body></html>";
					 win.document.write(output);
					  
					}