function tableRowColor(tableId){
	if (document.getElementById(tableId)){
		var tbl = document.getElementById(tableId);
		for (i=1; i<tbl.rows.length; i++) {
			if (i % 2 == 0){
				tbl.rows[i].className = 'tblGrey';
			}else{
				tbl.rows[i].className = '';
			}
		}
	}
}