// JavaScript Document

function $(el){ return document.getElementById(el); }



onload = function(){
  
  // debugger;
  
  // init:
  
  Loading.init();
  DownFrame.init();
  
  BoxType.init();  
  Dimension.init();
  BoxHeight.init(10, 40, 1, 10 );


  BoxType.onchange = function(b){
    Box.setType( b.type );
  }
  
  BoxHeight.onchange = function(o){
    Box.setHeight( o.value );
  }

  $('print_button').onclick = function(){
  
    printBox();
  
  }

  //
  
  Box.load();


}

