// --------------------------------------------------------------------------------------
// Quick Show - Hide Function

function showit(boxid){ 
   document.getElementById(boxid).style.display="block"; 
} 

function hideit(boxid){ 
   document.getElementById(boxid).style.display="none"; 
}


// --------------------------------------------------------------------------------------
// SWAP PIC FUNCTION

function showPic1 (whichpic) {
 if (document.getElementById) {
  document.getElementById('placeholder1')
  .src = whichpic.href;
  if (whichpic.title) {
   document.getElementById('desc1')
  .childNodes[0].nodeValue = whichpic.title;
  } else {
   document.getElementById('desc1')
  .childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
  }
  return false;
 } else {
  return true;
 }
}
