function showtable(tableid, startRow){
var odd=false;
var tablename=document.getElementById(tableid);
if(tablename){
var rows=tablename.getElementsByTagName("tr");
if(rows){
	if (!startRow) {
		startRow = 0;
	}
for (var j=startRow; j<rows.length; j++) {
if (odd==true){
   odd=false;
  }else{
   rows[j].style.backgroundColor="#fff";
   //rows[j].style.backgroundColor="#ECECEC";
  odd=true;
  }
rows[j].bgc=rows[j].style.backgroundColor;
rows[j].onmouseover=function(){
			this.style.backgroundColor="#e6e3e3";
		}
rows[j].onmouseout=function(){
			this.style.backgroundColor=this.bgc;
		}
} 
}
}
}

function showtable3(tableid,startRow){

var odd=false;
var tablename=document.getElementById(tableid)
var rows=tablename.getElementsByTagName("tr");
if (!startRow) {
	startRow=0;
}
for (var j=startRow; j<rows.length; j++) {
if (odd==true){
   odd=false;
  }else{
   rows[j].style.backgroundColor="#fff";
   //rows[j].style.backgroundColor="#ECECEC";
  odd=true;
  }
} 
}

function showul(listid){
var odd=false;
var ulname=document.getElementById(listid);
if(ulname){
var rows=ulname.getElementsByTagName("li");
if(rows){
for (var j=0; j<rows.length; j++) {
if (odd==true){
   odd=false;
  }else{
   rows[j].style.backgroundColor="#fff";
   //rows[j].style.backgroundColor="#ECECEC";
  odd=true;
  }
rows[j].bgc=rows[j].style.backgroundColor;
rows[j].onmouseover=function(){
			this.style.backgroundColor="#e6e3e3";
		}
rows[j].onmouseout=function(){
			this.style.backgroundColor=this.bgc;
		}
} 
}
}
}

  

