        //<!--
        function spacer() {
          var myHeight = 0;
          var mH = 0;
          
          if( typeof( window.innerHeight ) == 'number' ) {
            //nem IE
            myHeight = window.innerHeight;
          } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
            //IE 6+ 
            myHeight = document.documentElement.clientHeight;
          } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
            //IE 4 kompatibilis
            myHeight = document.body.clientHeight;
          }
          // action!
          mH = myHeight - 710;
          document.getElementById("spc01").height = mH;
          }
          window.onload = spacer;
        //-->
