window.onload = f_init;

var oForm       = null;

function f_init() {
	oForm       = document.forms[0];
}

function f_send() {
	if(oForm.elements["fn"].value=="") {
		alert("Introduce tu nombre.");
		oForm.elements["fn"].focus();
		return false;
	}
	if(oForm.elements["em"].value=="") {
		alert("Introduce tu correo electrónico para poderte responder.");
		oForm.elements["em"].focus();
		return false;
	}
	if(oForm.elements["msg"].value=="") {
		alert("Introduce tu mensaje.");
		oForm.elements["msg"].focus();
		return false;
	}
	oForm.submit();
	return false;
}