function showHideContent(p_Div,p_Img) {
   var m_oDivPerformers = document.getElementById(p_Div);
   var m_oExpandIcon = document.getElementById(p_Img);
   
   if (m_oDivPerformers.style.display == 'none') {
      m_oDivPerformers.style.display = 'block';
      m_oExpandIcon.src = 'http://www.naxos.com/images/collapse.png';
      m_oExpandIcon.title = 'Hide Details';
   } else {
      m_oDivPerformers.style.display = 'none';
      m_oExpandIcon.src = 'http://www.naxos.com/images/expand.png';
      m_oExpandIcon.title = 'Show Details';
   }
   
   return true;
}
