function ShowHideQPlayerSection(executionContext)
{
   var formContext = executionContext.getFormContext();
   if (formContext.getAttribute("resco_featureversion").getValue() != null)
   {
      if (formContext.getAttribute("resco_featureversion").getValue() > 999)
      {
         formContext.ui.tabs.get('resco_form').sections.get('resco_questionnaireplayergen1').setVisible(false);
         formContext.ui.tabs.get('resco_form').sections.get('resco_questionnaireplayergen2').setVisible(true);
      }
      else
      {
         formContext.ui.tabs.get('resco_form').sections.get('resco_questionnaireplayergen1').setVisible(true);
         formContext.ui.tabs.get('resco_form').sections.get('resco_questionnaireplayergen2').setVisible(false);
      }
   }
}