var popupStatusLP = 0;

function loadPopupLP()
{
	if(popupStatusLP==0){
		$("#backgroundPopup").css({
			"opacity": "0.7"
		});
		$("#backgroundPopup").fadeIn("slow");
		$("#popupContact").fadeIn("slow");
		popupStatusLP = 1;
	}
}

function disablePopupLP()
{
	if(popupStatusLP==1){
		$("#backgroundPopup").fadeOut("slow");
		$("#popupContact").fadeOut("slow");
		popupStatusLP = 0;
	}
}

function centerPopupLP()
{
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#popupContact").height();
	var popupWidth = $("#popupContact").width();

	$("#popupContact").css({
		"position": "absolute",
		"top": 20 ,
		"left": 50, "z-index": 30000
	});
	
	$("#backgroundPopup").css({	"height": windowHeight });
}
