<!--
function zoom(imageName,imageWidth,imageHeight) {
	newWindow = window.open("","images","width="+imageWidth+",height="+imageHeight+",left=200,top=200");
	newWindow.document.open();
	newWindow.document.write('<html><title>images@billboart.org</title><style type="text/css"><!--body {  background-image: url(../images/bilbologo_m.gif);  background-repeat: repeat-x; background-position: 100px}--></style><body bgcolor="#000033" text="#003172" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" link="#006699" vlink="#548BAF" alink="#FFFFFF" onBlur=javascript:self.close()>'); 
	newWindow.document.write('<img src='+imageName+'>'); 
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
//-->
