function abreModal(ide){
		//evt.preventDefault();
	
		parent.window.scrollTo(0,0);
	
		var maskHeight = $(document).height();
		var maskWidth = $(window).width();
	
		$('#mask').css({'width':maskWidth,'height':maskHeight});

		$('#mask').fadeIn(1000);	
		$('#mask').fadeTo("slow",0.8);	
		
		$("#"+ide).css('top',  60);
		$("#"+ide).css('left', ($(window).width()/2) - ($("#"+ide).width()/2) );
	
		$("#"+ide).fadeIn(2000);
}

	$('.window .close').click(function (e) {
		e.preventDefault();
		$('#mask').hide();
		$('.window').hide();
	});		

