function popView (imgName, theTitle)
{
 var spacer, leftSide, rightSide;
 spacer = theTitle.indexOf (" ")
 while (spacer  > 0)
 {
  leftSide = theTitle.substring (0, spacer);
  rightSide = theTitle.substring (spacer + 1, theTitle.length);
  theTitle = leftSide + "%20" + rightSide;
  spacer = theTitle.indexOf (" ")
 }
 var prepString = 'gallery/viewpic.html?thename=' + theTitle + '&thefile=' + imgName;
 var windowProperties = 'toolbar=no,location=no,scrollbars=no,resizable=yes,width=500,height=400';
 viewWin = window.open (prepString, imgName.substring (0,imgName.indexOf(".")), windowProperties);
}