/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Jeremy Keith / Anonymous | http://www.alistapart.com/articles/imagegallery/ */
function showPic(whichpic, whichrow, whichurl) {
  if (document.getElementById) {
    document.getElementById('placeholder_' + whichrow).src = whichpic.href;
    if (document.getElementById('imgzoom_' + whichrow)) {
    document.getElementById('imgzoom_' + whichrow).href = whichurl;
    }
    if (whichpic.title) {
      document.getElementById('desc_' + whichrow).childNodes[0].nodeValue = whichpic.title;
    } else {
      document.getElementById('desc_' + whichrow).childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
    }
    return false;
  } else {
  return true;
  }
}