function tablacolors(){
	cual=document.getElementById("tabla").rows;

	for(a=0;a<cual.length;a++){
		color(a);
	}

}

function color(b){
	if(b%2==0)
		cual[b].style.backgroundColor="#ffff99";
	else
		cual[b].style.backgroundColor="#ffffcc";
}

