﻿function openModalPanel(e, id) {
	e.preventDefault();
	
	//var id = id;
	var maskHeight = $(document).height();
	var maskWidth = $(window).width();
	
	$('#mask').css({'width':maskWidth,'height':maskHeight});
	$('#mask').fadeIn(10);
	$('#mask').fadeTo('slow', 0.3);
	
	//Get the window height and width
	var winH = $(window).height();
	var winW = $(window).width();
	$(id).css({
		'top': winH / 2 - $(id).height() / 2,
		'left': winW / 2 - $(id).width() / 2
	});
	
	$(id).fadeIn(10); 
	$('#buscaTitulo').focus();

	$('#mask').click(function () {
		$(this).hide();
		$('.window').hide();
	});
}

$(document).ready(function() {
	$('a[name=modal], a[name=modalTitulos]').click(function(e) {
		//e.preventDefault();
		openModalPanel(e, $(this).attr('href'));
	});
});
