﻿// JScript File
// http://www.pagetutor.com/button_designer/index.html
 function goLite(FRM,BTN)
 {
    window.document.forms[FRM].elements[BTN].style.color = "#026890";
    window.document.forms[FRM].elements[BTN].style.backgroundColor = "#79c9ec";
    window.document.forms[FRM].elements[BTN].style.borderColor = "#448dae";
 }

 function goDim(FRM,BTN)
 {
    window.document.forms[FRM].elements[BTN].style.color = "#ffffff";
    window.document.forms[FRM].elements[BTN].style.backgroundColor = "#0078ae";
    window.document.forms[FRM].elements[BTN].style.borderColor = "#77d5f7";
 }