function InitTabsBoletines()
{
    jQuery('#boletines_tabs').tabs({ fxSlide: true });
    jQuery('#boletines_tabs').tabs('select', 0);
}

function checkEmailAddress(email)
{
   //return email.match(/\b(^(\S+@).+((\.com)|(\.cat)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\.info)|(\..{2,2}))$)\b/gi);
   return email.match(/\b(^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$)\b/gi);
}

function ComprobarSeleccionTipos ()
{
    return jQuery('#t_matinal').is(':checked')||jQuery('#t_deportes').is(':checked')||jQuery('#t_ocio_cultura').is(':checked')||jQuery('#t_vespertino').is(':checked')||jQuery('#t_gente_tv').is(':checked')||jQuery('#t_videos').is(':checked');
}

function ComprobarAlta ()
{
	jQuery('#operacion').val('alta');
   var correo_alta = trim(jQuery('#correo_alta').val());
    
	//Comprobamos campos obligatorios
	if (correo_alta == '')
	{
		alert('Debe introducir una dirección de correo electrónico');
	}
	else if(!checkEmailAddress(correo_alta))
	{
		alert('La dirección de correo electrónico debe ser correcta');
	}
	else if(!ComprobarSeleccionTipos())
	{
		alert('Debe seleccionar algún tipo de boletín al que quiera suscribirse');
	}
	else if  (!(jQuery('#bol_bases').is(':checked')))
	{
		alert('Debe aceptar las bases generales de uso');
	}
    else
	{
		jQuery('#form_boletines_suscripcion').submit();
	}
	return false;
}

function VolverAtras ()
{
	jQuery('#operacion').val('');
	jQuery('#form_boletines_suscripcion').submit();
}
