function image_rollover (id) {
  // change image
  document.images['bigPic'].src = '/data/images/' + id + '/medium.jpg';
  // document.getElementById("bigPicLink").href='/data/images/' + id + '/large.jpg';
}
function redirect (location) {
  window.location = location;
}