function Mouseover(that)
{
//that.style.backgroundImage='url(Images/button_bgr_over.gif)';
//that.style.backgroundRepeat='repeat';
that.style.background="#666633"
that.style.color='#ffffcc';
that.style.fontWeight='bold';
that.style.borderLeft='1px solid #302F19';
that.style.borderRight='1px solid #8B896A';
that.style.borderTop='1px solid #302F19';
that.style.borderBottom='1px solid #8B896A';
}
function Mouseout(that)
{
//that.style.backgroundImage='url(Images/button_bgr.gif)';
//that.style.backgroundRepeat='repeat';
that.style.background="#666633"
that.style.color='#E4E0BD';
//that.style.fontWeight='bold';
that.style.borderLeft='1px solid #8B896A';
that.style.borderRight='1px solid #302F19';
that.style.borderTop='1px solid #8B896A';
that.style.borderBottom='1px solid #302F19';
}