<!--  // Image Switcher

function showPic_1 (whichpic) {
if (document.getElementById) {
document.getElementById('placeholder_1').src = whichpic.href;
  if (whichpic.title) {
   document.getElementById('desc_1').childNodes[0].nodeValue = whichpic.title;
  } else {
   document.getElementById('desc_1').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
  }
  return false;
 } else {
  return true;
 }
}

function showPic_3 (whichpic) {
if (document.getElementById) {
document.getElementById('placeholder_3').src = whichpic.href;
  if (whichpic.title) {
   document.getElementById('desc_3').childNodes[0].nodeValue = whichpic.title;
  } else {
   document.getElementById('desc_3').childNodes[0].nodeValue = whichpic.childNodes[0].nodeValue;
  }
  return false;
 } else {
  return true;
 }
}

-->