<!--
function pic(photo, text)
{
	var zWindow;
	zWindow=window.open("", "newwin", "width=500,height=400,left=150,top=25,toolbar=0,location=0,scrollbars=0");
	zWindow.document.open();
	zWindow.document.write("<HTML><HEAD>");
	zWindow.document.write("<TITLE>Bruce Brown Construction</TITLE>");
	zWindow.document.write("</HEAD>");
	zWindow.document.write('<body bgcolor="#2e5a03"><center>');
	zWindow.document.write("<img src=images/" + photo + "></center>");
	zWindow.document.write("<br><center><font face=Tahoma,Verdana size=2 color=FFFFFF>" + text + "</font></center>");
	zWindow.document.write("<center><form><input type=button value=Close onclick='window.close()'></form></center>");
	zWindow.document.write("</BODY></HTML>");
}
-->
