function switchModuleDebug(moduleName)
{
  if($('#moduleDebugHeader_' + moduleName).css('display') == 'none')
  {
    //$('#moduleDebugHeader_' + moduleName).css('display','block');
    $('div.moduleDebugHeader').each(function(i){$(this).css('display','block');});
    $('div.moduleDebugMessages').each(function(i){$(this).css('display','block');});
  }
  else
  {
    //$('#moduleDebugHeader_' + moduleName).css('display','none');
    $('div.moduleDebugHeader').each(function(i){$(this).css('display','none');});
    $('div.moduleDebugMessages').each(function(i){$(this).css('display','none');});
  }
}
