// JavaScript Document

<!-- Actualizacion Año //-->
function getAny(){
var now = new Date();
return now.getFullYear();
}

<!-- Abrir Popup //-->
function popup() 
{
   var w2 = Math.ceil(528/2);
   var windowX = Math.ceil( window.screen.width  / 2 )-w2;
   var h2 = Math.ceil(459/2);
   var windowY = Math.ceil( window.screen.height / 2 )-h2;
   window.open('noticia.htm','win','fullscreen=0, directories=0, resizable=0, location=0, status=0, scrollbars=1, toolbar=0, menubar=0, width=528, height=459,left='+windowX+',top='+windowY);
}

<!-- Validación Formulario //-->
function valida_envia(){
	//valido 'nombre'
	if (document.fvalida.nombre.value.length==0){
		alert("Por favor, rellene campo Nombre")
		document.fvalida.nombre.focus()
		return 0;
	}
	//valido 'apellidos'
	if (document.fvalida.apellidos.value.length==0){
		alert("Por favor, rellene campo Apellidos")
		document.fvalida.apellidos.focus()
		return 0;
	}
	//valido 'pais'
	if (document.fvalida.pais.selectedIndex==0){
		alert("Por favor, rellene campo País")
		document.fvalida.pais.focus()
		return 0;
	}
	//valido 'empresa'
	if (document.fvalida.empresa.value.length==0){
		alert("Por favor, rellene campo Empresa")
		document.fvalida.empresa.focus()
		return 0;
	}
	//valido 'email'
	if (document.fvalida.email.value.length==0){
		alert("Por favor, rellene campo E-mail")
		document.fvalida.email.focus()
		return 0;
	}
	//valido 'telefono'
	if (document.fvalida.telefono.value.length==0){
		alert("Por favor, rellene campo Teléfono")
		document.fvalida.telefono.focus()
		return 0;
	}
	//el formulario se envia
	// alert("Muchas gracias por enviar el formulario");
	document.fvalida.submit();
}
