function alternate(id){ if(document.getElementsByTagName){ var table = document.getElementById(id); var rows = table.getElementsByTagName("tr"); for(i = 0; i < rows.length; i++){ //manipulate rows if(i % 2 == 0){ rows[i].className = "evenrow"; }else{ rows[i].className = "oddrow"; } } } } function highlightzip(loc){document.getElementById(loc).style.color="#f2531f";} function nohighlight(loc){document.getElementById(loc).style.color="#000000";}