var modus = 1;

function textgr () {


  if(ALL){
    if (modus == 0) {
      document.all['textZ'].style.fontSize ='11px';
      modus = 1;
      return;
    }

    if (modus == 1) {
      document.all['textZ'].style.fontSize ='12px';
      modus = 2;
      return;
    }
    if (modus == 2) {
      document.all['textZ'].style.fontSize ='13px';
      modus = 3;
      return;
    }
    if (modus == 3) {
      document.all['textZ'].style.fontSize ='14px';
      modus = 4;
      return;
    }

  }
  if(BY_ID){
  if (modus == 0) {
      window.document.getElementById('textZ').style.fontSize ='11px';
      modus = 1;
      return;
    }
    
  if (modus == 1) {
      window.document.getElementById('textZ').style.fontSize ='12px';            
      modus = 2;
      return;
    }
    if (modus == 2) {
      window.document.getElementById('textZ').style.fontSize ='13px';
      modus = 3;
      return;
    }
    if (modus == 3) {
      window.document.getElementById('textZ').style.fontSize ='14px';
      modus = 4;
      return;
    }

  }
return
} 


function textkl () {



  if(ALL){
    if (modus == 4) {
      document.all['textZ'].style.fontSize ='13px';
      modus = 3;
      return;
    }
    if (modus == 3) {
      document.all['textZ'].style.fontSize ='12px';
      modus = 2;
      return;
    }
    if (modus == 2) {
      document.all['textZ'].style.fontSize ='11px';
      modus = 1;
      return;
    }
 if (modus == 1) {
      document.all['textZ'].style.fontSize ='10px';
      modus = 0;
      return;
    }
  }
  if(BY_ID){
    if (modus == 4) {
      window.document.getElementById('textZ').style.fontSize ='13px';
      modus = 3;
      return;
    }
    if (modus == 3) {
     window.document.getElementById('textZ').style.fontSize ='12px';
            
      modus = 2;
      return;
    }
    if (modus == 2) {
     window.document.getElementById('textZ').style.fontSize ='11px';            
      modus = 1;
      return;
    }

    if (modus == 1) {
      window.document.getElementById('textZ').style.fontSize ='10px';
      modus = 0;
      return;
    }


  }
return
} 

