var ie4 = false; if(document.all) { ie4 = true; }
function getObject(id) { if (ie4) { return document.all[id]; } else { return document.getElementById(id); } }
function toggle(link, divId) { 
  var lText = link.innerHTML;
  var d = getObject(divId);
 if (lText == '<img src="/img/arrow/right.jpg" alt="Castle Hill RSL Photography Club" style="margin-top: 3px;">') {
   link.innerHTML = '<img src="/img/arrow/down.jpg" alt="Castle Hill RSL Photography Club" style="margin-top: 3px;">'; 
   d.style.display = 'block'; 
   }
 else { 
  link.innerHTML = '<img src="/img/arrow/right.jpg" alt="Castle Hill RSL Photography Club" style="margin-top: 3px;">';
  d.style.display = 'none';
  } 
}

