var popupStatus = 0;

function loadPopup(id){
	if(popupStatus==0){
		$("#background-popup").css({
			"opacity": "0.7"
		});
		$("#background-popup").fadeIn("slow");
		$("#popup"+id).fadeIn("slow");
		popupStatus = 1;
	}
}

function disablePopup(){
	if(popupStatus==1){
		$("#background-popup").fadeOut("slow");
		$("#popup1").fadeOut("slow");
		$("#popup2").fadeOut("slow");
		$("#popup3").fadeOut("slow");
		$("#popup4").fadeOut("slow");
		$("#popup5").fadeOut("slow");
		$("#popup6").fadeOut("slow");
		$("#popup7").fadeOut("slow");
		$("#popup8").fadeOut("slow");
		$("#popup9").fadeOut("slow");
		$("#popup10").fadeOut("slow");
		$("#popup11").fadeOut("slow");
		$("#popup12").fadeOut("slow");
		$("#popup13").fadeOut("slow");
		$("#popup14").fadeOut("slow");
		$("#popup15").fadeOut("slow");
		$("#popup16").fadeOut("slow");
		$("#popup17").fadeOut("slow");
		$("#popup18").fadeOut("slow");
		$("#popup19").fadeOut("slow");
		$("#popup20").fadeOut("slow");
		popupStatus = 0;
	}
}

function centerPopup(id){
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#popup"+id).height();
	var popupWidth = $("#popup"+id).width();
	$("#popup"+id).css({
		"position": "absolute",
		"top": windowHeight/2-popupHeight/2,
		"left": windowWidth/2-popupWidth/2
	});	
	$("#background-popup").css({
		"height": windowHeight
	});	
}