﻿function FancyFocus(obj)
{
    obj.style.borderWidth = "2px";
    obj.style.fontWeight = "bold";
    //obj.style.background = "#EEEEEE";
    //obj.style.fontSize = "11px";
}

function FancyBlur(obj)
{
    obj.style.borderWidth = "1px";
    obj.style.fontWeight = "normal";
    //obj.style.background = "White";
    //obj.style.fontSize = "12px";
}

function ButtonClicker(obj)
{
    try
    { obj.click(); }
    catch(e)
    {}
}

