// Created by Brandywine Diversified Services
// Copyright 1990-2012 by Susan R. DuLaney, all rights reserved
//
// PictureSizer.js
// Enlarges/shrinks pictures for user
//

// Enlarge the picture
function enlarge(image_id) {
  document.getElementById(image_id).style.width = "512px";
  document.getElementById(image_id).style.height = "384px";
  document.getElementById("content").style.backgroundColor = "#556655";
}

// Shrink the picture
function shrink(image_id) {
  document.getElementById(image_id).style.width = "200px";
  document.getElementById(image_id).style.height = "150px";
  document.getElementById("content").style.backgroundColor = "#99AA99";
}
