function on (scr,cor,scroll)
{
scr.style.backgroundColor=cor;
if (scroll=='1')
  scr.style.scrollbarTrackColor=cor;
}

function foco (scr,cor)
{
var tempval=eval(scr);
tempval.select();
scr.style.color=cor;
scr.style.backgroundColor="#FFFFFF";
scr.style.border = "1px outset #AAA";
}

function desfoco (scr,cor)
{
scr.style.color=cor;
scr.style.backgroundColor="#F3F3F3";
scr.style.border = "1px solid #D3D3D3";
}
