var tdselbot = "";
var tdmarcadabot = "";

function rolloverbot(i){
   if (document.getElementById("td" + i).style.background != "#820001") { //color de fondo marcado(minusculas)
    document.getElementById("td" + i).style.background="#820000"; //color de fondo rollover
    document.getElementById("td" + i).style.color = "#ffffff"; // color de texto rollover
  }

  tdselbot = i;
}

function estadoinicialbot(i){
	if (document.getElementById("td" + tdselbot).style.background != "#820001"){ //color de fondo marcado (minusculas)
  	  document.getElementById("td" + i).style.background = "#FAC865"; // color de fondo normal
      document.getElementById("td" + i).style.color = "#820001"; // color de texto normal
	}
}

function marcartdbot(i){
  
  //Seleccionamos la fila que ha pinchado
  if (tdmarcadabot != ""){
    document.getElementById("td" + tdmarcadabot).style.background="#FAC865";//color de fondo estado normal
	document.getElementById("td" + tdmarcadabot).style.color = "#820001"; // color de texto estado normal
  }
  
  document.getElementById("td" + i).style.background="#820001"; //color de fondo marcado
  document.getElementById("td" + i).style.color = "#ffffff"; //color texto marcado

  tdmarcadabot = i;
}

