<!--

var mobjConstText = null;
var mobjVarText = null;

// Fortschrittsanzeige
function ProcessMessage(vstrConstText, vstrVarText)
  {
  try
    {
    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';
        }
      }
    }
  catch(e)
    {
    JSError_ThrowSpecificError('ProcessMessage', e, false);
    }
  }

//-->
