function checkEmail(objValue){
	if (objValue == "")
		return false;
	if (objValue.charAt(0) == '@')
		return false;
	if (objValue.length < 6)
		return false;
	if (objValue.indexOf("@") == -1)
		return false;
	if (objValue.indexOf(".") == -1)
		return false;
	if (objValue.slice(objValue.indexOf("@")).indexOf(".") == -1)
		return false;
	return true;
}

		
function enviar_solicitud() {
	var boletin_nombre = document.getElementById('boletin_nombre').value;
	var boletin_email = document.getElementById('boletin_email').value;
			
			
			
	if ( boletin_nombre == "" || boletin_nombre == 'Nombre' ) {
		alert("Por favor, introduzca su nombre");
		document.getElementById('boletin_nombre').focus();
	} else if ( boletin_email == "" || boletin_email == 'Email' ) {
		alert("Por favor, introduzca un email de contacto");
		document.getElementById('boletin_email').focus();
	} else if (!checkEmail(boletin_email)) {
		alert("Por favor, introduzca un email de contacto válido");
		document.getElementById('boletin_email').focus();
	} else {
		document.getElementById('boletin').submit();
	}
}

