// JavaScript Document
function printNoticia(n) {
	if(navigator.appName == 'Microsoft Internet Explorer') {
		window.open('../noticia_print.php?id='+n,'Noticias','width=680, height=600, scrollbars');
	} else {
		window.open('noticia_print.php?id='+n,'Noticias','width=680, height=600, scrollbars');
	}
}

$(document).ready(function(){

	//OVER DOS PROJETOS
	$('.boxfoto').hover(function(){
		$(".boxfotoanimate", this).stop().animate({top:'0px'},{queue:false,duration:160});
	}, function() {
		$(".boxfotoanimate", this).stop().animate({top:'145px'},{queue:false,duration:160});
	});


	$('#bt_enviar').toggle(function(){
		document.getElementById('div_enviar_drop').style.display = "block";
	}, function() {
		document.getElementById('div_enviar_drop').style.display = "none";
	});

});

function SetCampo(s,c,d){
	document.getElementById(c).innerHTML = s;
	document.getElementById(d).style.display = "none";
}

function mostraDiv(x,y){
	
		if(document.getElementById(y).style.display == 'none'){
			
			document.getElementById(y).style.display = 'block';
			document.getElementById(x).className = "recolher";
		}
		
		else{
			
			document.getElementById(y).style.display = 'none';
			document.getElementById(x).className = "expandir";
		}
		
}

function resultadoEnquete(indice){
	$("#div_enquete").load('enqueteResult.php?indice='+indice);
}
function teste(){
	alert ('ok');
}

function evita_letra(tecla)
{
	var keyCode = tecla.keyCode ? tecla.keyCode : tecla.which ? tecla.which : tecla.charCode;
	//alert(keyCode);
	if(keyCode !=8 && keyCode !=13 && keyCode !=9)
	{
		if (keyCode < 48 || keyCode > 57)
		{
			if (window.event) //IE
			tecla.returnValue = false;
			else //Firefox
			tecla.preventDefault();
		}
	}
}

function formatar(src, mask,event){
	var tecla = event.keyCode;
	var i = src.value.length;
	var saida = mask.substring(0,1);
	var texto = mask.substring(i)
	
	if (texto.substring(0,1) != saida && tecla!=8)	{
		src.value += texto.substring(0,1);
	}
}

function abreCurso(id) {
	tb_show('', 'pop_curso.php?&id='+id+'&placeValuesBeforeTB_=savedValues&TB_iframe=true&width=600&height=350', '');
}

/*function abreVibo(id) {
	if(navigator.appName == 'Microsoft Internet Explorer'){
		//apagar o /novilhoms quando for pubicar
		window.open('admin/vibo/visualizar/?id='+id,'Vibo','width=955, height=680');
		//window.open('/vibo/?id='+id,'Vibo','width=955, height=680');
	} else {
		window.open('admin/vibo/visualizar/?id='+id,'Vibo','width=955, height=680');
		//window.open('vibo/?id='+id,'Vibo','width=955, height=680');
	}
}*/

function abreVibo(id) {
	if(navigator.appName == 'Microsoft Internet Explorer'){
		//apagar o /novilhoms quando for pubicar
		window.open('publicacoes/'+id,'Vibo','width=955, height=680');
		//window.open('/vibo/?id='+id,'Vibo','width=955, height=680');
	} else {
		window.open('publicacoes/'+id,'Vibo','width=955, height=680');
		//window.open('vibo/?id='+id,'Vibo','width=955, height=680');
	}
}
