function checkContacta()
{
	if(document.form.nombre.value=="")
	{
		window.alert("Debe introducir su nombre.");
		document.form.nombre.focus();
		return;
	}
    if(document.form.apellidos.value=="")
	{
		window.alert("Debe introducir los apellidos.");
		document.form.apellidos.focus();
		return;
	}
    if(document.form.direccion.value=="")
	{
		window.alert("Debe introducir la dirección.");
		document.form.direccion.focus();
		return;
	}

	if(document.form.telefono.value=="")
	{
		window.alert("Debe introducir su teléfono.");
		document.form.telefono.focus();
		return;
	}

	if(document.form.email.value=="")
	{
		window.alert("Debe introducir su email.");
		document.form.email.focus();
		return;
	}

	document.form.submit();
}

