var otrax=0;  // 0 = 'no', 1 = 'yes'

function otrafun() {
  if (!document.getElementById) return false;
  otrax=1;
  document.getElementById('otratxt').style.background='#E58C00';
  if (otrax) {
    document.getElementById('Estilo2').style.visibility = 'visible';
  }
  document.votar.otratxt.focus();
}

function notrafun() {
  if (!document.getElementById) return false;
  otrax=0;
  if (!otrax) {
    document.getElementById('Estilo2').style.visibility = 'hidden';
  }
 // document.votar.done.focus();
}

function goSubmit() {
  var EntradasOK;
  EntradasOK = false;
  if (otrax==0) {
    EntradasOK = true;;
  } else if (otrax==1 && document.votar.otratxt.value=='') {
      alert("Tiene que Ingresar Otra Propuesta");
	  EntradasOK = false;
      document.votar.otratxt.focus();
  } else {
    EntradasOK = true;;
  }
  return EntradasOK;
}
