
<!--

function VerificaCampos()

{if (document.forms[0].txtNome.value.length<=0) {

window.alert ("Please tell us your Name!");

return false;

}


if (document.forms[0].txtEmail.value.length<=0) {

window.alert ("Please indicate your Email Address!");

return false;


}

if (document.forms[0].txtLocalidade.value.length<=0) {

window.alert ("Please tell us the name of your City!");

return false;


}

if (document.forms[0].txtPais.value.length<=0) {

window.alert ("Please indicate your Country!");

return false;


}

if (document.forms[0].txtTelefone.value.length<=0) { 

window.alert ("Please fill in the Telephone Number field!");

return false;

}

}

// -->

