function validaform(){
if (contacto.nombre.value.length < 3){
alert("Your name, please.");
contacto.nombre.focus();
return false;
}
if (contacto.direccion.value.length < 3){
alert("Your address, please.");
contacto.direccion.focus();
return false;
}
if (contacto.ciudad.value.length < 3){
alert("Your city, please.");
contacto.ciudad.focus();
return false;
}
if (contacto.pais.value.length < 3){
alert("Your country, please.");
contacto.pais.focus();
return false;
}
if (contacto.postal.value.length < 5){
alert("Your postal code, please.");
contacto.postal.focus();
return false;
}
if (contacto.telefono.value.length < 5){
alert("Your telephone number, please.");
contacto.telefono.focus();
return false;
}
codigo=contacto.telefono.value
if (isNaN(codigo)){
	alert("You must write a valid telephone number, please.");
	contacto.telefono.focus();
	return (false);
}
if ((contacto.correo.value.indexOf ('@', 0) == -1)||(contacto.correo.value.length < 5)||(contacto.correo.value.indexOf ('.', 0) == -1)) { 
    alert("Your must write a valid e-mail address, please."); 
	contacto.correo.focus();
return (false);
}else{
return true;
}
}
function busca() {
if (form1.indice.value== 0){
alert("Your must select an issue, please.");
return false;
}else{
return true;
}
}
function suscribir() {
if (suscripcion_online.Ds_Merchant_Titular.value.length < 3) {
    alert("The field Name must be fullfilled");
	suscripcion_online.Ds_Merchant_Titular.focus();
    return (false);
	}
if (suscripcion_online.direccion.value.length < 4) {
    alert("The field Address must be fullfilled.");
	suscripcion_online.direccion.focus();
    return (false);
	}
if (suscripcion_online.postal.value.length < 5){
    alert("The field Postcode must be fullfilled.");
	suscripcion_online.postal.focus();
    return (false);
	}
	codigo=suscripcion_online.postal.value
if (isNaN(codigo)){
    alert("The field Postcode must be a number.");
	suscripcion_online.postal.focus();
	return (false);
  	}
if (suscripcion_online.pais.value.length < 4) {
    alert("The field Country must be fullfilled.");
	suscripcion_online.pais.focus();
    return (false);
	}
if (suscripcion_online.telefono.value.length < 4) {
    alert("The field Phone must be fullfilled.");
	suscripcion_online.telefono.focus();
    return (false);
	}
if ((suscripcion_online.mail.value.indexOf ('@', 0) == -1)||(suscripcion_online.mail.value.length < 5)||(suscripcion_online.mail.value.indexOf ('.', 0) == -1)) { 
    alert("The field E-mail must be fullfilled."); 
	suscripcion_online.mail.focus();
return (false);
}else{
return true;
 }
 }
