// -- BEGIN - Change Image
function changeImage(imgDocID,imgObjName,layerName) {
  if (document.layers && layerName) {
     window.document.layers[layerName].document.images[imgDocID].src = (imgObjName);
  } else {
     document.images[imgDocID].src = (imgObjName);
  }
}
// -- END - Change Image

// -- BEGIN - the Mail to --
function theMailTo(theLink){
  document.getElementById(theLink).href= 'mailto:brian@analogradio.com';
}
// -- END - the Mail to --