/***************************/
//@Author: Adrian "yEnS" Mato Gondelle
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

/* **************************************************************************************************************** */
var popupStatus = 0;
function loadPopup(){
	if(popupStatus==0){
		$("#hlidaci-pesbg").css({
			"opacity": "0.7"
		});
		$("#hlidaci-pesbg").fadeIn("slow");
		$("#hlidaci-pes").fadeIn("slow");
		popupStatus = 1;
	}
}

function disablePopup(){
	if(popupStatus==1){
		$("#hlidaci-pesbg").fadeOut("slow");
		$("#hlidaci-pes").fadeOut("slow");
		popupStatus = 0;
	}
}

function centerPopup(){
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#hlidaci-pes").height();
	var popupWidth = $("#hlidaci-pes").width();
	$("#hlidaci-pes").css({
		"position": "absolute",
		"top": windowHeight/2-popupHeight/2,
		"left": windowWidth/2-popupWidth/2
	});
}
/* **************************************************************************************************************** */
var popupStatus2 = 0;
function loadPopup2(){
	if(popupStatus2==0){
		$("#dopoructebg").css({
			"opacity": "0.7"
		});
		$("#dopoructebg").fadeIn("slow");
		$("#doporucte").fadeIn("slow");
		popupStatus2 = 1;
	}
}

function disablePopup2(){
	if(popupStatus2==1){
		$("#dopoructebg").fadeOut("slow");
		$("#doporucte").fadeOut("slow");
		popupStatus2 = 0;
	}
}

function centerPopup2(){
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#doporucte").height();
	var popupWidth = $("#doporucte").width();
	$("#doporucte").css({
		"position": "absolute",
		"top": windowHeight/2-popupHeight/2,
		"left": windowWidth/2-popupWidth/2
	});
	
}
/* **************************************************************************************************************** */
$(document).ready(function(){
	$("#button").click(function(){
		centerPopup();
		loadPopup();
	});
	$("#hlidaci-pesClose").click(function(){
		disablePopup();
	});
	$("#hlidaci-pesbg").click(function(){
		disablePopup();
	});
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus==1){
			disablePopup();
		}
	});
  
	$("#button2").click(function(){
		centerPopup2();
		loadPopup2();
	});
	$("#doporucteClose").click(function(){
		disablePopup2();
	});
	$("#dopoructebg").click(function(){
		disablePopup2();
	});
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus2==1){
			disablePopup2();
		}
	});

});
