function ZoomIn(id) {
  document.getElementById(id).style.width='80px';
  document.getElementById(id).style.height='80px';
}

function ZoomOut(id) {
  document.getElementById(id).style.width='50px';
  document.getElementById(id).style.height='50px';
}
