// JavaScript Document

function mudaCorLink1(x)
{
	document.getElementById(x).style.color='#FF0000';
	//document.getElementById(x).style.fontWeight='bold';
}

function mudaCorLink2(x)
{
	document.getElementById(x).style.color='#1482B6';
	document.getElementById(x).style.fontWeight='normal';
}


	function redireciona(canal){
		window.location.href='http://www.santuarionacional.com/index.php?id_canal='+canal
	}
	
	function abre_album(){
		window.open("http://www.santuarionacional.com/celam/album.php","tinyWindow","toolbar=NO,width=334,height=315");
	}
	
	function validar(nome,email){
		
		if(nome.length < 2){
			alert("O campo NOME deve conter mais de dois caracteres");
			document.getElementById('nome').focus();
		}else{
			if(email.length < 9){
				alert("O campo EMAIL deve conter mais de DEZ caracteres");
				document.getElementById('email').focus()
			}else{
				if(confirm("Sua Mensagem foi enviada com Sucesso!\n\n Deseja indicar este site para alguma pessoa?")){
					document.form1.submit();
					window.open("http://www.santuarionacional.com/celam_tv/convite_email.php?nome="+nome+"&email="+email,"Pop","width=300,height=300,toolbar=NO");
				}else{
					document.form1.submit();
						
				}
			}			
		}
	}


 function exibe(x,y,z)
{
	document.getElementById(x).style.display='block';
	document.getElementById(y).style.display='none';
	document.getElementById(z).style.display='none';

}

function MudarPagina(id_menu){
	window.location = "index.php?menu="+id_menu;
}
