function openWindow(URL,argWidth,argHeight) {
	var NewWindowFeatures = "width=" + argWidth + ",height=" + argHeight + ",left=5,top=5,scrollbars=yes,resizable=no";
	window.open(URL,"oNewWindow",NewWindowFeatures);
}

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 = 'images/collapse.gif';
      m_oExpandIcon.title = 'Hide Details';
   } else {
      m_oDivPerformers.style.display = 'none';
      m_oExpandIcon.src = 'images/expand.gif';
      m_oExpandIcon.title = 'Show Details';
   }
   
   return true
}