// JavaScript Document
<!--
/*You have permission from Brawley Web Designs to use this Javascript
on your PERSONAL website. This permission is granted only if
this comment is left, intact (within the Javascript program),
and the Javascript coding is left unchanged, except where
you insert your URLs and graphics.
Thank you
Brawley Web Designs
http://www.brawleywebdesign.com
*/
if (document.images){
var KeypadTop = new Image() ; KeypadTop.src = "KeypadGraphics/KeypadTop.jpg";
var KeypadHere = new Image() ; KeypadHere.src = "KeypadGraphics/KeypadHere.jpg";
var KeypadReasons = new Image() ; KeypadReasons.src = "KeypadGraphics/KeypadReasons.jpg";
var KeypadInfoRequest = new Image() ; KeypadInfoRequest.src = "KeypadGraphics/KeypadInfoRequest.jpg";
var KeypadMain = new Image() ; KeypadMain.src = "KeypadGraphics/KeypadMain.jpg";
var KeypadEthics = new Image() ; KeypadEthics.src = "KeypadGraphics/KeypadEthics.jpg";
var KeypadBusiness = new Image() ; KeypadBusiness.src = "KeypadGraphics/KeypadBusiness.jpg";
var KeypadResident = new Image() ; KeypadResident.src = "KeypadGraphics/KeypadResident.jpg";
var InfoOff = new Image() ; InfoOff.src = "KeypadGraphics/InfoOff.jpg";
var InfoOn = new Image() ; InfoOn.src = "KeypadGraphics/InfoOn.jpg";
var ResidentialOff = new Image() ; ResidentialOff.src = "KeypadGraphics/ResidentialOff.jpg";
var ResidentialOn = new Image() ; ResidentialOn.src = "KeypadGraphics/ResidentialOn.jpg";
var MainOff = new Image() ; MainOff.src = "KeypadGraphics/MainOff.jpg";
var MainOn = new Image() ; MainOn.src = "KeypadGraphics/MainOn.jpg";
var ReasonsOff = new Image() ; ReasonsOff.src = "KeypadGraphics/ReasonsOff.jpg";
var ReasonsOn = new Image() ; ReasonsOn.src = "KeypadGraphics/ReasonsOn.jpg";
var EthicsOff = new Image() ; EthicsOff.src = "KeypadGraphics/EthicsOff.jpg";
var EthicsOn = new Image() ; EthicsOn.src = "KeypadGraphics/EthicsOn.jpg";
var BusinessOff = new Image() ; BusinessOff.src = "KeypadGraphics/BusinessOff.jpg";
var BusinessOn = new Image() ; BusinessOn.src = "KeypadGraphics/BusinessOn.jpg";
}
function flipBtn(btnName, imgBtn, imgPlate) {
  if (document.images){
    document[btnName].src = eval(imgBtn + ".src");
    document.plate.src = eval(imgPlate + ".src");
  }
  return true;
}
//-->