function rowLight(row, color) { row.style.backgroundColor = color; }

function confirmation(msg, loc)
{
   var a = confirm(msg);
   if(a) document.location=loc
}

function selectAll(elmnt)
{
   var e = document.getElementById(elmnt);
   
   if(!e) return;
   
   e.focus();
   e.select();
   
   return;
}
