Logo CEWEB.br Logo NIC.br Logo CGI.br
Home Sobre o projeto

Sites Pertecentes a (o) PR

Endereço Nota Erros Avisos

www.prdsuporte.seed.pr.gov.br/modules/qas/aviso.php?c
odigo=31

67.03 36 150
Recomendações Avaliadas
2.2 Garantir que os objetos programáveis sejam acessíveis.

Recomendações

Número Descrição Quantidade Linhas Código Fonte
2.2.6 Presença do elemento SCRIPT sem o elemento NOSCRIPT 4 21 24 29 102
21 <![CDATA[<script type="text/javascript"> <!-- //--></script>]]>
24 <![CDATA[<script type="text/javascript"><!-- //--> </script>]]>
29 <![CDATA[<script type="text/javascript"> function toggle(notifs_form) { obj=document.getElementById(notifs_form); obj.style.display=!(obj.style.display=="block")? "block" : "none"; } function swapimage(swap) { img_plus="http://www.prdsuporte.seed.pr.gov.br/themes/prd-modelo/images/plus.gif"; img_minus="http://www.prdsuporte.seed.pr.gov.br/themes/prd-modelo/images/minus.gif"; obj=document.getElementById(swap); obj.src=!(obj.src==img_minus)? img_minus : img_plus; } </script>]]>
102 <![CDATA[<script type='text/javascript'> function xoopsFormValidate_form_recomendar() { myform = window.document.form_recomendar; if ( myform.nome_remetente.value == "" ) { window.alert("Digite seu nome"); myform.nome_remetente.focus(); return false; } if ( myform.email_remetente.value == "" ) { window.alert("Digite seu e-mail"); myform.email_remetente.focus(); return false; } else { if ( !validaEmail(myform.email_remetente.value)) { window.alert("Seu e-mail é inválido"); myform.email_remetente.select(); return false; } } if ( myform.nome_destinatario.value == "" ) { window.alert("Digite o nome do destinatário"); myform.nome_destinatario.focus(); return false; } if ( myform.email_destinatario.value == "" ) { window.alert("Digite o e-mail do destinatário"); myform.email_destinatario.focus(); return false; } else { if ( !validaEmail(myform.email_destinatario.value)) { window.alert("O e-mail do destinatário é inválido"); myform.email_destinatario.select(); return false; } } return true; } function validaEmail(email) { var pos, aux, pos2, dominio, carac, i email = email.toLowerCase() if (email.indexOf("@",0) == -1 || email.length <= 10) return false pos = email.indexOf("@",0) aux = email.substring(pos+1) if (aux.indexOf(".",0) < 3) return false pos2 = aux.indexOf(".",0) dominio = aux.substr(0,pos2) if (dominio.length < 3) return false carac = new Array("!","#","$","%","&","*","(",")","+","=","/","\\","|","?","'","\"","{","}","[","]","ª","º",":",",",";","§","°","<",">") for(i=0; i<carac.length; i++) if (email.indexOf(carac[i],0) != -1) return false return true } </script>]]>