// JavaScript Document
ativo = true;


function abrePagina(url)
{
	if(url.indexOf(".html"))
	{
		var a = url.split(".");		
		url = a[0] + ".php";
	}
	
	if(url == "gestaoRecursos_1.html"){
		if(ativo){
			alturaOverlay = $(document).height();
			$('.overlay').show();
			$('.overlay').css({
				'height':alturaOverlay,
				'opacity':0.7
			});	
			$('.lightbox').show();
			ativo = false;
		}else{
			document.getElementById("id_iframe").src = "gestaoRecursos_2.html";
		}
	}else{
		document.getElementById("id_iframe").src = url;	
	}	
}

function fFechaLight(){
	$('.window .close, #mask').click(function (e) {
		$('.window').fadeOut('normal', function() {
			$('#mask').fadeOut('normal');
		});
		e.preventDefault();
	});	
}

function abrirLightBox(ind){
	// START - SIMPLE MODAL JQUERY	
		
	
									
		var id = ind;
		var maskHeight = $(document).height()*2;
		var maskWidth = $(window).width();
		
		$('#mask').css({
		   'width':maskWidth,
		   'height':maskHeight,
		   'background' : '#000',
		   'opacity' : 0.8,
		   'cursor' : 'pointer'
		});
		
		
		$('#mask').fadeIn();
	
		//Get the window height and width
		var winH = $(window).height();
		var winW = $(window).width();
			  
		$(id).css('top',  winH/2-$(id).height()/2);
		$(id).css('left', winW/2-$(id).width()/2);
	
		$(id).fadeIn(2000); 
		
	// END - SIMPLE MODAL JQUERY
}
