// JavaScript Document
function pic(photo)
{
	var zWindow;
	zWindow=window.open("", "newwin", "width=250,height=365,left=300,top=200,toolbar=0,location=0,scrollbars=0");
	zWindow.document.open();
	zWindow.document.write("<HTML style='overflow:hidden'><HEAD>");
	zWindow.document.write("<TITLE>Tempest Hockey - Photo Gallery</TITLE>");
	zWindow.document.write("<link href='css/styles.css' rel='stylesheet' type='text/css' />");
	zWindow.document.write("</HEAD>");
	zWindow.document.write('<body bgcolor="#675555" style="margin-top:10px;"><center>');
	zWindow.document.write("<img style='border:solid 3px #6e6e6e;' src=images/" + photo + "></center>");
    zWindow.document.write("<br>");
	zWindow.document.write("<center><form><input type=button value=Close class='bttn1' onclick='window.close()'></form></center>");
	zWindow.document.write("</BODY></HTML>");
}
function pic1(photo)
{
	var zWindow;
	zWindow=window.open("", "newwin", "width=315,height=365,left=300,top=200,toolbar=0,location=0,scrollbars=0");
	zWindow.document.open();
	zWindow.document.write("<HTML style='overflow:hidden'><HEAD>");
	zWindow.document.write("<TITLE>Tempest Hockey - Photo Gallery</TITLE>");
	zWindow.document.write("<link href='css/styles.css' rel='stylesheet' type='text/css' />");
	zWindow.document.write("</HEAD>");
	zWindow.document.write('<body bgcolor="#675555" style="margin-top:10px;"><center>');
	zWindow.document.write("<img style='border:solid 3px #6e6e6e;' src=images/" + photo + "></center>");
    zWindow.document.write("<br>");
	zWindow.document.write("<center><form><input type=button value=Close class='bttn1' onclick='window.close()'></form></center>");
	zWindow.document.write("</BODY></HTML>");
}

