<!--

    function loadEncuesta()
    {
         var frm = document.form_encuesta, url = "", opt = "";
            
         for (var i = 0; i < frm.opt.length; i++) 
              if (frm.opt[i].checked) { opt = i + 1; break; } 
             
         if (opt != "")
             loadContent("encuesta", "_encuestas/encuestas.php?opt=" + opt + "&addr=" + frm.addr.value);
    }

    function loadEncuesta2()
    {
         var frm = document.form_encuesta2, url = "", opt = "", mail = ""; 
 
         for (var i = 0; i < frm.opt.length; i++) 
              if (frm.opt[i].checked) { opt = i + 1; break; } 

         if (opt == frm.opt.length) 
         {
             var str = frm.otros.value;
                      
             if (str.replace(/^\s*|\s*$/g,"").length == 0) 
             {
                 alert("Indique area de capacitacion");                 
                 frm.otros.focus();
                 return 0;
             } else {
                 frm.target = "fquiz";
                 frm.action = "_encuestas2/mailareas.php";
                 frm.method = "POST";
                 frm.submit();
             }
         }
            
         if (opt != "")
             loadContent("ccc", "_encuestas2/encuestas2.php?opt=" + opt + "&addr=" + frm.addr.value);
    }

    function loadResultados(index)
    {
         loadContent("content", "_encuestas/resultados.php?ind=" + index);
    }	

    function opentextarea(value)
    {
         document.getElementById("textbox").style.display = (!value) ? "none": "";
    }

-->
