// JavaScript Document


function imageSwap (img_name, newpic) {
 if (document.images) {
  document.images[img_name].src = newpic;
 }
}
