// JavaScript Document
	function OpenNewWindow(mypage,w,h,myname){
		var winl = (screen.width-w)/2;
		var wint = (screen.height-h)/2;
		settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,toolbar=no,location=no,status=no,menubar=no,resizable=yes,dependent=no'
		win=window.open(mypage,myname,settings)
		if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
	}


	function checkRequired(f){
		if (f.Contacto.value.length == 0){
			window.alert("Debe introducir la Persona de contacto");
			f.Contacto.style.background='#FFD7DF';
			f.Contacto.focus();
			return false;
		}
		else if (f.Email.value.length == 0){
			window.alert("Debe introducir el E-mail");
			f.Email.style.background='#FFD7DF';
			f.Email.focus();
			return false;
		}
		else if (f.AceptaLOPD.checked == false){
			window.alert("Debe marcar Condiciones Legales LOPD");
			return false;
		}
		else{
			return true
		}
	}


	function DemoCheckRequired(f){
		if (f.Nombre.value.length == 0){
			window.alert("Debe introducir el Nombre del contacto");
			f.Nombre.style.background='#FFD7DF';
			f.Nombre.focus();
			return false;
		}
		else if (f.Empresa.value.length == 0){
			window.alert("Debe introducir el nombre de la Empresa");
			f.Empresa.style.background='#FFD7DF';
			f.Empresa.focus();
			return false;
		}
		else if (f.Email.value.length == 0){
			window.alert("Debe introducir la direccion e-mail");
			f.Email.style.background='#FFD7DF';
			f.Email.focus();
			return false;
		}
		else if (f.Direccion.value.length == 0){
			window.alert("Debe introducir la Direccion");
			f.Direccion.style.background='#FFD7DF';
			f.Direccion.focus();
			return false;
		}
		else if (f.Poblacion.value.length == 0){
			window.alert("Debe introducir la Poblacion");
			f.Poblacion.style.background='#FFD7DF';
			f.Poblacion.focus();
			return false;
		}
		else if (f.cp.value.length == 0){
			window.alert("Debe introducir el Codigo Postal");
			f.cp.style.background='#FFD7DF';
			f.cp.focus();
			return false;
		}
		else if (f.AceptaLOPD.checked == false){
			window.alert("Debe marcar Condiciones Legales LOPD");
			return false;
		}
		else{
			return true
		}
	}


	function checkRequiredInsc(f){
		if (f.Nombre.value.length == 0){
			window.alert("Debe introducir el Nombre y Apellidos");
			f.Nombre.style.background='#BDFDD2';
			f.Nombre.focus();
			return false;
		}
		else if (f.Empresa.value.length == 0){
			window.alert("Debe introducir el nombre de la Empresa");
			f.Empresa.style.background='#BDFDD2';
			f.Empresa.focus();
			return false;
		}
		else if (f.Email.value.length == 0){
			window.alert("Debe introducir la direccion e-mail");
			f.Email.style.background='#BDFDD2';
			f.Email.focus();
			return false;
		}
		else if (f.AceptaLOPD.checked == false){
			window.alert("Debe marcar Condiciones Legales LOPD");
			return false;
		}
		else{
			return true
		}
	}

