<!--

function showImg(imgName) {
  newX = Math.round((screen.width/3)-(320/2));
  newY = Math.round((screen.height/3)-(245/2));
  popImg = window.open('','largerImg','width=320,height=245,screenX='+newX+',screenY='+newY+',left='+newX+',top='+newY+',scrollbars=no,resizable=no');
  popImg.document.write('<html><head><title>Larger Image</title></head>');
  popImg.document.write('<body background="images/spacer.gif" marginheight="10" marginwidth="10" topmargin="10" leftmargin="10">');
  popImg.document.write('<img src="images/'+imgName+'" border="0" width="300" height="225">');
  popImg.document.write('</body></html>');
  popImg.focus();
  popImg.document.close();
}

//-->