﻿// JavaScript Document
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){
 rows[j].style.backgroundColor="#ffffff";
   odd=false;
  }else{
   rows[j].style.backgroundColor="#edf3ff";
  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;
		}
} 
}

