function Inicio(Cual) {
 for (id=1; id<5; id++) {
  if(document.all) {
   document.all['Colum'+id].style.background="url('comun/pnt_trans.gif')"
   document.all['Colum'+id].style.border="thin dotted #EEEEEE"
  } else {
   document.getElementById('Colum'+id).style.background="url('comun/pnt_trans.gif')"
   document.getElementById('Colum'+id).style.border="thin dotted #EEEEEE"
  }
 }
 if (Actual!='0') {
  if(document.all) {
   document.all['Colum'+Actual].style.background="url('comun/pnt_trans.gif')"
   document.all['Colum'+Actual].style.border="thin solid #000000"
  } else {
   document.getElementById('Colum'+Actual).style.background="url('comun/pnt_trans.gif')"
   document.getElementById('Colum'+Actual).style.border="thin solid #000000"
  }
 }
}

function Sobre(id) {
 if(document.all) {
  document.all['Colum'+id].style.background="url('comun/celda.gif')"
  document.all['Colum'+id].style.border="thin dotted #565A6E"
 } else {
  document.getElementById('Colum'+id).style.background="url('comun/celda.gif')"
  document.getElementById('Colum'+id).style.border="thin dotted #565A6E"
 }
}

function Fuera(id) {
 if (id!=Actual) {
  if(document.all) {
   document.all['Colum'+id].style.background="url('comun/pnt_trans.gif')"
   document.all['Colum'+id].style.border="thin dotted #EEEEEE"
  } else {
   document.getElementById('Colum'+id).style.background="url('comun/pnt_trans.gif')"
   document.getElementById('Colum'+id).style.border="thin dotted #EEEEEE"
  }
 } else {
  if(document.all) {
   document.all['Colum'+id].style.background="url('comun/pnt_trans.gif')"
   document.all['Colum'+id].style.border="thin solid #000000"
  } else {
   document.getElementById('Colum'+id).style.background="url('comun/pnt_trans.gif')"
   document.getElementById('Colum'+id).style.border="thin solid #000000"
  }
 }
}
