<!--
function showPic (bigpic)
{
  if (document.getElementById)
   {
      document.getElementById('large_image').src = bigpic.href;
      if (bigpic.title)
       {
         document.getElementById('description1').childNodes[0].nodeValue = bigpic.title;
       }
      else
       {
         document.getElementById('description1').childNodes[0].nodeValue = bigpic.childNodes[0].nodeValue;
       }
      if (bigpic.name)
       {
         document.getElementById('description2').childNodes[0].nodeValue = bigpic.name;
       }
      else
       {
         document.getElementById('description2').childNodes[0].nodeValue = bigpic.childNodes[0].nodeValue;
       }
      return false;
   }
  else
   {
      return true;
   }
}

function SwitchStyle(new_style,item)
{
  item.className = new_style;
}
//-->
