<!--
  var width = 350;
  var height = 350;
  var left = ((screen.width - width) / 2);
  var top = (((screen.height - height) / 2) - 50);


  function detalhe(etapa) {
    window.open("cursos_etapa.asp?id=" + etapa, "Cursos", 
                "left=" + left + ", top=" + top + ", width=" + width + ", height=" + 
                height + ", directories=no, " + 
                "location=no, menubar=yes, personalbar=no, resizable=yes, scrollbars=yes," + 
                "status=no, toolbar=no, titlebar=yes");
  }

  //verifica se o usuario selecionou a etapa desejada
  function marcado() {
    var i=0
    var f = document.forms[0];

    if ((!f.etpcodigo.length) && (f.etpcodigo.checked))
      return true;
    else {
      for (; i<f.etpcodigo.length; i++) {
        if (f.etpcodigo[i].checked)
          return true;
      }
    }
    return false;
  }

  //pula para o formulario de inscricao
  function validar() {
    var f = document.forms[0];

    if (!marcado()) {
      alert("Por favor, informe o concurso que você deseja participar!");       
      return false;
    }
    return true;
  }
//-->
