function showPic (whichpic) {
 if (document.getElementById) {
  document.getElementById('placeholder').src = whichpic.href;
  document.getElementById('placeholder').style.display = 'block';
  if (whichpic.title) {
   document.getElementById('desc').style.display = 'block';
   document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;	
   document.getElementById('capt').style.display = 'block';
   document.getElementById('capt').childNodes[0].nodeValue = whichpic.name;	
  } else {
   //document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
//document.getElementById('capt').childNodes[0].nodeValue = whichpic.name;	
  }
  return false;
 } else {
  return true;
 }
}