
	
	
function ejecuta_form(idform){

	document.getElementById(idform).submit();
}

	
function envia_noticia(id_noticia, titular, seccion, subseccion, lng, enviar_ok, enviar_ko){

	$.ajax({
	   type: "POST",
	   url: "back/forms/envia_mail.php",
	   data: "ajax=1"
				+'&id_noticia='+id_noticia
				+'&titular='+titular
				+'&seccion='+seccion
				+'&subseccion='+subseccion
				+'&lang='+lng
				+'&tu_nombre='+document.getElementById('tu_nombre').value
				+'&tu_email='+document.getElementById('tu_email').value
				+'&amigo_nombre='+document.getElementById('amigo_nombre').value
				+'&amigo_email='+document.getElementById('amigo_email').value,
	   success: function(msg){
			

			var browserName = navigator.appName; 
			var browserVersion = parseInt(navigator.appVersion); 
			if(msg == 1){
				
									
				if (browserName == "Microsoft Internet Explorer" && browserVersion <= 4){ 
					document.getElementById("noticia_enviar_amigo_form").style.visibility = "hidden";
					document.getElementById("resultado_mail").innerHTML = enviar_ok;
					document.getElementById("noticia_enviar_amigo_res").style.visibility = "visible";
					document.getElementById("noticia_enviar_amigo_form").style.display = "none";
					document.getElementById("noticia_enviar_amigo_res").style.display = "block";
				}
				else{ 
					document.getElementById("noticia_enviar_amigo_form").style.display = "none";
					document.getElementById("resultado_mail").innerHTML = enviar_ok;
					document.getElementById("noticia_enviar_amigo_res").style.display = "block";
				}
				
			}
			else{
				
				if (browserName == "Microsoft Internet Explorer" && browserVersion < 7){ 
					document.getElementById("noticia_enviar_amigo_form").style.visibility = "visible";
					document.getElementById("resultado_mail").innerHTML = enviar_ko;
					document.getElementById("noticia_enviar_amigo_res").style.visibility = "visible";
					document.getElementById("noticia_enviar_amigo_form").style.display = "block";
					document.getElementById("noticia_enviar_amigo_res").style.display = "block";
				}
				else{ 
					document.getElementById("noticia_enviar_amigo_form").style.display = "block";
					document.getElementById("resultado_mail").innerHTML = enviar_ko;
					document.getElementById("noticia_enviar_amigo_res").style.display = "block";
				}
			}
		}
	});
}
