﻿// JScript File
var highlight_color = '#b2b428';
var lowlight_color = '#7287c1';

var text_highlight_color = 'yellow';
var text_lowlight_color = 'white';

function highlight(control1, control2)
{
    control1.style.color = text_highlight_color;
    control1.style.fontSize = '24px';
    control1.style.top = '-1px';
    control2.style.backgroundColor = highlight_color;
}
function lowlight(control1, control2)
{
    control1.style.color = text_lowlight_color;
    control1.style.fontSize = 'small';
    control1.style.top = '5px';
    control2.style.backgroundColor = lowlight_color;
}
function Enter(url)
{
    top.location.href=url;
}

function highlightButton(s) 
{
    if ("INPUT"==event.srcElement.tagName)
    event.srcElement.className=s;
}

function closeme()
{
    window.close();
}
