
function altTblRows() {
	el = document.getElementsByTagName("TABLE");  
	for (i=0; i<el.length; i++) {
		if (el[i].className == "tblDisplay") {
			rows = el[i].getElementsByTagName("TR");    
			for (j=0; j<rows.length; j++) {
				rows[j].className = "row" + (j % 2); 
			}
		}
	}
}


