/* 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) {

  if (document.getElementById) {
    document.getElementById('placeholder').src = whichpic.href;

    return false;
  } else {
  return true;
  }
}

