﻿
function showtable(tableid){
var odd=false;
var tablename=document.getElementById(tableid)
var rows=tablename.getElementsByTagName("tr");
for (var j=1; j<rows.length; j++) {
if (odd==true){
   odd=false;
  }else{
   rows[j].style.backgroundColor="#f5f5f5";
  odd=true;
  }
rows[j].bgc=rows[j].style.backgroundColor;
rows[j].onmouseover=function(){
			this.style.backgroundColor="#FCF9D8";
		}
rows[j].onmouseout=function(){
			this.style.backgroundColor=this.bgc;
		}
} 
}
window.onload=function(){
showtable("ctable");
}
