
var popupStatus = 0;
function loadPopup(){
	if(popupStatus==0){
		jQuery("#backgroundPopup").css({
			"opacity": "0.7"
		});
		jQuery("#backgroundPopup").fadeIn("slow");
		jQuery("#popupPost").fadeIn("slow");
		popupStatus = 1;
	}
}
function disablePopup(){
	if(popupStatus==1){
		jQuery("#backgroundPopup").hide("fade", {}, 1000);
		jQuery("#popupPost").hide("fade", {}, 1000);
		popupStatus = 0;
	}
}
function centerPopup(){
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = jQuery("#popupPost").height();
	var popupWidth = jQuery("#popupPost").width();
	jQuery("#popupPost").css({
		"left": 45
	});
	jQuery("#backgroundPopup").css({
		"height": jQuery('#content').height(),
		"position": "absolute"
	});
	
}
