function validar_frmConta(form){ var strErro; var res; res=true; strErro=""; if(!checkField(form,"nome")) strErro="- Nome"; if(!checkField(form,"apelido")) strErro+="\n\n- Apelido"; if(!checkField(form,"morada")) strErro+="\n\n- Rua e N.º"; if(!checkField(form,"codPostal")) strErro+="\n\n- Cód. Postal"; if(!checkField(form,"localidade")) strErro+="\n\n- Localidade"; if(!checkField(form,"email")) strErro+="\n\n- E-mail"; if(!checkFieldSelect(form,"pais")) strErro+="\n\n- Pais"; if(!checkField(form,"telefone") && !checkField(form,"telemovel")) strErro+="\n\n- Telefone ou Telemóvel"; if (form.elements["password"].value!=form.elements["check_password"].value){ //verificar se a pwd de confirmacao é igual strErro+="\n\n- As passwords não coincidem, por favor verique-as."; } if (strErro) { msgErroCamposEmFalta(strErro); res=false; } return res; }