var old_top = 0;

function zoomin(sender){
  scroll(0,0);
  old_top = sender.offsetTop;
}


function zoomout(){
  scroll(0,old_top + 675);
}
