// JavaScript Document

function isEmpty(elem, helperMsg){
	if(elem.value.length == 0){
		alert(helperMsg);
		elem.focus();
		return true;
	}
	return false;
}

function recarga(){
	window.location.reload();
}

function checkfields() {
		if(document.getElementById('author').value.length == 0){
		alert("Debes introducir tu nombre");
		window.location.reload();
		}
		else if(document.getElementById('email').value.length == 0){
		alert("Debes introducir tu mail");
		window.location.reload();
		}
		else if(document.getElementById('comment').value.length == 0){
		alert("Debes introducir un texto para la firma");
		window.location.reload();
	}
}

function contacto1() {
texto1='Contacto F&oacute;rmula V'
emailE=('inf' + 'o' + '@' + 'formula' + 'v.es')
document.write('<a href="mailto:' + emailE + '" title="Contacto F&oacute;rmula V">' + texto1 + '</a>')
	}
	
function contacto2() {
texto2='Informaci&oacute;n y Contrataci&oacute;n'
emailE=('santa' + 'mar' + '@' + 'arrakis' + '.es')
document.write('<a href="mailto:' + emailE + '" title="Informaci&oacute;n y Contrataci&oacute;n">' + texto2 + '</a>')

	}

function contacto3() {
texto3='santamar@arrakis.es'
emailE=('santa' + 'mar' + '@' + 'arrakis' + '.es')
document.write('<a href="mailto:' + emailE + '" title="Informaci&oacute;n y Contrataci&oacute;n">' + texto3 + '</a>')

	}
	
