 function popupImage(strImage)
 {
   myUrl = "showImage.php?image=" + strImage;
   mywindow = window.open (myUrl,
  "TJHSSTSports","scrollbars=1,width=500,height=500");
  mywindow.focus();
 }

 function popupImageLogo(strImage)
 {
   myUrl = "showImageLogo.php?image=" + strImage;
   mywindow = window.open (myUrl,
  "TJHSSTSportsLogo","scrollbars=0,width=500,height=250");
  mywindow.focus();
 }
