/*************************************************************************
If you are using a 'header' row you can set the x=0 to be x=1 and it will start at row 2.
*************************************************************************/
function ezcolrow(el)
{
var ele = document.getElementById(el);
for(x = 0; x < ele.rows.length; x++)
{
ele.rows[x].style.height = "20px"
if (x%2 == 0)
{
ele.rows[x].style.backgroundColor = "#EDEEF4";
}
else
{
ele.rows[x].style.backgroundColor = "#FFFFFF";
}
}
}
