<!--

var mobjConstText = null;
var mobjVarText = null;

// Fortschrittsanzeige
function ProcessMessage(vstrConstText, vstrVarText)
  {
  if(!mobjConstText)
    {
    mobjConstText = document.getElementById(strMESSAGE_CONSTDIV);
    }
  if(!mobjVarText)
    {
    mobjVarText = document.getElementById(strMESSAGE_VARDIV);
    }

  if((vstrConstText != '') || (vstrVarText != ''))
    {
    if(mobjConstText && (vstrConstText != ''))
      {
      mobjConstText.innerHTML = vstrConstText;
      }
    if (mobjVarText)
      {
      mobjVarText.innerHTML = vstrVarText;
      }
    }
  else
    {
    // Ausblenden
    if(mobjConstText)
      {
      mobjConstText.parentNode.style.visibility = 'hidden';
      }
    }
  }

//-->