﻿// JScript File
function jsRollOn(ctl){
    ctl.style.background='#cba86e';
    ctl.style.color='#ffffff';
}

function jsRollOut(ctl){
    ctl.style.background="#ffffff";
    ctl.style.color='#666666';
}

function jsGoTo(lnk){
    location.href=lnk;
}

function jsNavRollOn(ctl){
    ctl.style.color="#FFFFFF";
    ctl.style.backgroundColor="#c53d00";
}

function jsNavRollOut(ctl){
    ctl.style.color="";
    ctl.style.backgroundColor="#9a3200";
}

function jsPopWin(path){
    window.open(path, 'popwin','');
}