$(document).ready(function(){
	$(".tampao").css({width:docWH()[0]+'px', height:docWH()[1]+'px',display:"block"});
	$(".popUp").css({top:Math.max(0, (docWH()[1] - $(".popUp").height()) / 2) + 'px', left:Math.max(0, (docWH()[0] - $(".popUp").width()) / 2) +'px'}).show(500);
	$(".fechar").eq(0).click(function(){
		$(".popUp").hide(500);
		$(".tampao").hide();
	});
});

function docWH() {
	var b = document.body, e = document.documentElement, w = 0, h = 0;
	if (e) {
		w = Math.max(w, e.scrollWidth, e.offsetWidth);
		h = Math.max(h, e.scrollHeight, e.offsetHeight);
	}
	if (b) {
		w = Math.max(w, b.scrollWidth, b.offsetWidth);
		h = Math.max(h, b.scrollHeight, b.offsetHeight);
	}
	return [w, h];
}