//Treetrimmers Associates, Inc
//<--
//Audio Pop Up Window

function open_audio()
   {
   window.open('treetrimmers-associates-audio.html','Audio','width=250,height=150,menubar=no,status=no,location=no,toolbar=no,scrollbars=no,resizable=no,directories=no,left=250,top=225,screenX=250,screenY=225');
   }
//-->

//<--
//Image swap functions

function imageSwapIn(imgID,newSrc){
   var image = document.getElementById(imgID);
   var oldSrc = image.setAttribute('oldSrc',image.src);
   image.src = newSrc;
}
function imageSwapOut(imgID){
   var image = document.getElementById(imgID);
   var oldSrc = image.getAttribute('oldSrc');
   image.src = oldSrc;
   image.removeAttribute('oldSrc');
}
//-->

