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 = "#ffffff";
}
else
{
ele.rows[x].style.backgroundColor = "#efefef";
}
}
}