function getElement(eid) {
   if (document.all) {
      return document.all[eid];
   }
      if (document.getElementById) {
		return document.getElementById(eid);
   }
}


function setBg(theRow)
{
theRow.style.background="url('')";
theRow.style.background="#cc5555";
    return true;
} 

function setBgOut(theRow)
{
theRow.style.background="url('images/button-bg.gif')";
//theRow.style.border="2px inset";
    return true;
} 


function setBg2(theRow)
{
theRow.style.background="#2222aa";

    return true;
} 

function setBgOut2(theRow)
{
theRow.style.background="#9999CC";
    return true;
} 


function setBg3(theRow)
{
theRow.style.background="#ccFFcc";

    return true;
} 

function setBgOut3(theRow)
{
theRow.style.background="";
    return true;
} 

