function zoom(rate){
  var t=document.getElementById('zoom').style;
  var w=Math.floor(parseInt(t.width)*rate);
  var h=Math.floor(parseInt(t.height)*rate);
  t.width=w+"px";
  t.height=h+"px";
}

