/*************************************************/
/* JavaScript Image Gallery                      */
/* by Jeremy Keith                               */
/* http://alistapart.com/articles/imagegallery   */
/*************************************************/
function showPic (whichpic) {
 if (document.getElementById) {
// modifica il src dell'imamgine con id placeholder
document.getElementById('placeholder').src = whichpic.href;
  if (whichpic.title) {
// se il link ha un title, lo visualizza nel tag p con id desc	  
   document.getElementById('desc').childNodes[0].nodeValue = whichpic.title;
  } else {
// altrimenti visualizza il testo del link	  
   document.getElementById('desc').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
  }
  return false;
 } else {
  return true;
 }
}
