
<!--

function VerificaCampos()

{if (document.forms[0].txtNome.value.length<=0) {

window.alert ("Don't forget to write down you Name!");

return false;

}


if (document.forms[0].txtDataNascimento.value.length<=0) {

window.alert ("Don't forget to write down your Date of Birth!");

return false;

}


flag = false;
for (i=0;i<4;i++) {
	if (document.forms[0].rdoEstadoCivil[i].checked) { flag = true };
}

if (!flag) 
{

window.alert ("Dont't forget to write down your Marital Status!");

return false;

}


if (document.forms[0].txtBI.value.length<=0) {

window.alert ("Don't forget to tell us your ID Card Number!");

return false;

}


flag = false;
for (i=0;i<3;i++) {
	if (document.forms[0].rdoServicoMilitar[i].checked) { flag = true };
}

if (!flag) 
{

window.alert ("Don't fortget to tell us your Military Service status!");

return false;

}


if (document.forms[0].txtNacionalidade.value.length<=0) {

window.alert ("Don't forget to write down your Nationality!");

return false;

}


if (document.forms[0].txtMorada.value.length<=0) {

window.alert ("Don't forget to tell us your Address!");

return false;

}


if (document.forms[0].txtCidade.value.length<=0) {

window.alert ("Don't forget to write down your City!");

return false;

}


if (document.forms[0].txtCodigoPostal.value.length<=0) { 

window.alert ("Please tell us what your Postal Code is!");

return false;

}

if (document.forms[0].txtTelefone.value.length<=0) { 

window.alert ("Please indicate your Telephone Number!");

return false;

}

}

// -->

