
// status bar
status = 'Euro Náutica Calpe S.L. :: Ctra. N-332, km 147 - Calpe - Alicante - Espańa :: tel. +34 965 834 147 :: info@euronautica.com';


function check_mailform_es(mail_form)
{
	if (mail_form.elements['tx_name'].value == '')
	{
		alert('Por favor, introduzca su nombre.');
		mail_form.elements['tx_name'].focus();
	}
	else if (mail_form.elements['tx_city'].value == '')
	{
		alert('Por favor, introduzca el nombre de su ciudad.');
		mail_form.elements['tx_city'].focus();
	}
	else if (mail_form.elements['tx_phone'].value == '')
	{
		alert('Por favor, introduzca su número de teléfono.');
		mail_form.elements['tx_phone'].focus();
	}
	else if (mail_form.elements['tx_comment'].value == '')
	{
		alert('Por favor, introduzca su mensaje.');
		mail_form.elements['tx_comment'].focus();
	}
	else
	{
		mail_form.submit();	
	}
}


function check_mailform_en(mail_form)
{
	if (mail_form.elements['tx_name'].value == '')
	{
		alert('Please fill in your Name.');
		mail_form.elements['tx_name'].focus();
	}
	else if (mail_form.elements['tx_city'].value == '')
	{
		alert('Please fill in your City.');
		mail_form.elements['tx_city'].focus();
	}
	else if (mail_form.elements['tx_phone'].value == '')
	{
		alert('Please fill in your Phone number.');
		mail_form.elements['tx_phone'].focus();
	}
	else if (mail_form.elements['tx_comment'].value == '')
	{
		alert('Please fill in your Comment.');
		mail_form.elements['tx_comment'].focus();
	}
	else
	{
		mail_form.submit();	
	}
}


function check_mailform_nl(mail_form)
{
	if (mail_form.elements['tx_name'].value == '')
	{
		alert('Vul uw naam in a.u.b.');
		mail_form.elements['tx_name'].focus();
	}
	else if (mail_form.elements['tx_city'].value == '')
	{
		alert('Vul uw woonplaats in a.u.b.');
		mail_form.elements['tx_city'].focus();
	}
	else if (mail_form.elements['tx_phone'].value == '')
	{
		alert('Vul uw telefoonnummer in a.u.b.');
		mail_form.elements['tx_phone'].focus();
	}
	else if (mail_form.elements['tx_comment'].value == '')
	{
		alert('Vul uw bericht in a.u.b.');
		mail_form.elements['tx_comment'].focus();
	}
	else
	{
		mail_form.submit();	
	}
}


function check_mailform_de(mail_form)
{
	if (mail_form.elements['tx_name'].value == '')
	{
		alert('Füllen Sie bitte aus: Ihre Nahme');
		mail_form.elements['tx_name'].focus();
	}
	else if (mail_form.elements['tx_city'].value == '')
	{
		alert('Füllen Sie bitte aus: Wohnort');
		mail_form.elements['tx_city'].focus();
	}
	else if (mail_form.elements['tx_phone'].value == '')
	{
		alert('Füllen Sie bitte aus: Telefonnummer');
		mail_form.elements['tx_phone'].focus();
	}
	else if (mail_form.elements['tx_comment'].value == '')
	{
		alert('Füllen Sie bitte aus: Bemerkungen');
		mail_form.elements['tx_comment'].focus();
	}
	else
	{
		mail_form.submit();	
	}
}
