function enviarFormularioNewsletter(){
	NOMBRE = document.frmContacto.NOMBRE.value;
	EMPRESA = document.frmContacto.EMPRESA.value;
	CARGO = document.frmContacto.CARGO.value;
	TELEFONO = document.frmContacto.TELEFONO.value;
	EMAIL = document.frmContacto.EMAIL.value;
	RECIBIR_NEWSLETTER = document.frmContacto.RECIBIR_NEWSLETTER.checked;
	if (NOMBRE == "" || EMPRESA == "" || CARGO == "" || TELEFONO == "" || EMAIL == "")
		alert("Por favor, rellene todos los campos y vuelva a enviar el formulario. Muchas gracias.");
	else if (RECIBIR_NEWSLETTER == false)
		alert("Debe marcar la opcion de recibir nuestra newsletter. Muchas gracias.");
	else if ( !(/\w{1,}[@][\w\-]{1,}([.]([\w\-]{1,})){1,3}$/.test(EMAIL)) )
		alert("Por favor, introduzca un email valido. Muchas gracias");
	else
		document.frmContacto.submit();
}
function enviarFormularioContacta(){
	NOMBRE = document.frmContacto.NOMBRE.value;
	EMPRESA = document.frmContacto.EMPRESA.value;
	CARGO = document.frmContacto.CARGO.value;
	TELEFONO = document.frmContacto.TELEFONO.value;
	EMAIL = document.frmContacto.EMAIL.value;
	CONSULTA = document.frmContacto.CONSULTA.value;
	if (NOMBRE == "" || EMPRESA == "" || CARGO == "" || TELEFONO == "" || EMAIL == "" || CONSULTA == "")
		alert("Por favor, rellene todos los campos y vuelva a enviar el formulario. Muchas gracias.");
	else if ( !(/\w{1,}[@][\w\-]{1,}([.]([\w\-]{1,})){1,3}$/.test(EMAIL)) )
		alert("Por favor, introduzca un email valido. Muchas gracias");
	else
		document.frmContacto.submit();
}
function enviarFormularioSoporte(){
	NOMBRE = document.frmContacto.NOMBRE.value;
	DOMICILIO = document.frmContacto.DOMICILIO.value;
	LOCALIDAD = document.frmContacto.LOCALIDAD.value;
	CP = document.frmContacto.CP.value;
	PROVINCIA = document.frmContacto.PROVINCIA.value;
	TELEFONO = document.frmContacto.TELEFONO.value;
	EMAIL = document.frmContacto.EMAIL.value;
	PRODUCTO = document.frmContacto.PRODUCTO.value;
	CONSULTA = document.frmContacto.CONSULTA.value;
	if (NOMBRE == "" || DOMICILIO == "" || LOCALIDAD == "" || CP == "" || PROVINCIA == "" || TELEFONO == "" || EMAIL == "" || PRODUCTO == "" || CONSULTA == "")
		alert("Por favor, rellene todos los campos y vuelva a enviar el formulario. Muchas gracias.");
	else if ( !(/\w{1,}[@][\w\-]{1,}([.]([\w\-]{1,})){1,3}$/.test(EMAIL)) )
		alert("Por favor, introduzca un email valido. Muchas gracias");
	else
		document.frmContacto.submit();
}
function NewWindow(mypage,myname,w,h,scroll){
	//return false;
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings =
	'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
	if(win.window.focus){win.window.focus();}
}
