function zebra(tableId, myColor, start, end)
{
for (var i=start; i < (document.getElementById(tableId).rows.length - end); i+=2) {
document.getElementById(tableId).rows[i].style.backgroundColor = myColor;
}
}

