<!-- Begin
function toForm() {
document.form.name.focus();
}
// End -->
<!-- Begin
function checkFields() {
missinginfo = "";
if (document.form.name.value == "") {
missinginfo += "\n - Nombre";
}
if (document.form.apellidos.value == "") {
missinginfo += "\n - Apellidos";
}
if (document.form.direccion.value == "") {
missinginfo += "\n - Direccion";
}
if (document.form.pais.value == "") {
missinginfo += "\n - País";
}
if (document.form.cod_postal.value == "") {
missinginfo += "\n - Cod_Postal";
}
if (document.form.provincia.value == "") {
missinginfo += "\n - Provincia";
}
if (document.form.ciudad.value == "") {
missinginfo += "\n - Ciudad";
}
if ((document.form.email.value == "") ||
(document.form.email.value.indexOf('@') == -1) ||
(document.form.email.value.indexOf('.') == -1)) {
missinginfo += "\n - Direccion Email";
}
if (missinginfo != "") {
missinginfo ="_____________________________\n" +
"NO ha rellenado correctamente:\n" +
missinginfo + "\n_____________________________" +
"\nFavor de re-entrar otra vez y enviar!";
alert(missinginfo);
return false;
}
else return true;
}
// End -->
<!--
var message="This option is reserved";
function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// -->
