var lastId = "#dialog";

function openModal(id)
{

	lastId = id;
	resize();
	
	$('#mask').fadeIn(1000);	
	$('#mask').fadeTo("slow",0.8);	
		
	$(id).fadeIn(2000);
	
}

function resize()
{
	
	var winH = $(window).height();
	var winW = $(window).width();
	
	var maskHeight = $(document).height();
	var maskWidth = $(window).width();
	
	$('#mask').css({'width':maskWidth,'height':maskHeight});
	$(lastId).css('top',  winH/2-$(lastId).height()/2);
	$(lastId).css('left', winW/2-$(lastId).width()/2);	

}

$(document).ready(function()
{	

	$(window).resize(resize);
	
	$('.window .modalClose').click(function (e)
	{
		e.preventDefault();
		
		$('#mask').hide();
		$('.window').hide();
	});	
		
	$('#mask').click(function ()
	{
		$(this).hide();
		$('.window').hide();
	});			
	
});

function closeModal()
{
	$('#mask').hide();
	$('.window').hide();	
}

function fal(id)
{
	openModal("#dialog");
}
