/***************************/
//@Author: Adrian "yEnS" Mato Gondelle
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

function wScrlY(){return document.documentElement.scrollTop||document.body.scrollTop||window.pageYOffset||0;}

//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatus = 0;

//loading popup with jQuery magic!
function loadPopup(){
	//loads popup only if it is disabled
	if(popupStatus==0){
		$("#backgroundPopup").css({
			"opacity": "0.7"
		});
		$("#backgroundPopup").fadeIn("slow");
		$("#popupContact").fadeIn("slow");
		popupStatus = 1;
	}
}

//disabling popup with jQuery magic!
function disablePopup(){
	//disables popup only if it is enabled
	if(popupStatus==1){
		$("#backgroundPopup").fadeOut("slow");
		$("#popupContact").fadeOut("slow");
		popupStatus = 0;
	}
}

//centering popup
function centerPopup(){
	//request data for centering
	var windowWidth = document.documentElement.clientWidth;
	var windowHeight = document.documentElement.clientHeight;
	var popupHeight = $("#popupContact").height();
	var popupWidth = $("#popupContact").width();
	//centering
 $("#popupContact").css({
  "position": "absolute",
  "top": (windowHeight/2-popupHeight/2)+wScrlY(),
  "left": windowWidth/2-popupWidth/2
 });
	//only need force for IE6
	
	$("#backgroundPopup").css({
		"height": windowHeight
	});
	
}


//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
	
	//LOADING POPUP
	//Click the button event!
	$("#button").click(function(){
		//centering with css
		centerPopup();
		//load popup
		loadPopup();
	});
				
	//CLOSING POPUP
	//Click the x event!
	$("#popupContactClose").click(function(){
		disablePopup();
	});
	//Click out event!
	$("#backgroundPopup").click(function(){
		disablePopup();
	});
	//Press Escape event!
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus==1){
			disablePopup();
		}
	});

});




//For second pop-up

/***************************/
//@Author: Adrian "yEnS" Mato Gondelle
//@website: www.yensdesign.com
//@email: yensamg@gmail.com
//@license: Feel free to use it, but keep this credits please!					
/***************************/

//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatusb = 0;

//loading popup with jQuery magic!
function loadPopupb(){
	//loads popup only if it is disabled
	if(popupStatusb==0){
		$("#backgroundPopup2").css({
			"opacity": "0.7"
		});
		$("#backgroundPopup2").fadeIn("slow");
		$("#popupContact2").fadeIn("slow");
		popupStatusb = 1;
	}
}

//disabling popup with jQuery magic!
function disablePopupb(){
	//disables popup only if it is enabled
	if(popupStatusb==1){
		$("#backgroundPopup2").fadeOut("slow");
		$("#popupContact2").fadeOut("slow");
		popupStatusb = 0;
	}
}

//centering popup
function centerPopupb(){
	//request data for centering
	var windowWidthb = document.documentElement.clientWidth;
	var windowHeightb = document.documentElement.clientHeight;
	var popupHeightb = $("#popupContact2").height();
	var popupWidthb = $("#popupContact2").width();
	//centering
 $("#popupContact2").css({
  "position": "absolute",
  "top": (windowHeightb/2-popupHeightb/2)+wScrlY(),
  "left": windowWidthb/2-popupWidthb/2
 });
	//only need force for IE6
	
	$("#backgroundPopup2").css({
		"height": windowHeightb
	});
	
}


//CONTROLLING EVENTS IN jQuery
$(document).ready(function(){
	
	//LOADING POPUP
	//Click the button event!
	$("#button2").click(function(){
		//centering with css
		centerPopupb();
		//load popup
		loadPopupb();
	});
				
	//CLOSING POPUP
	//Click the x event!
	$("#popupContactClose2").click(function(){
		disablePopupb();
	});
	//Click out event!
	$("#backgroundPopup2").click(function(){
		disablePopupb();
	});
	//Press Escape event!
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatusb==1){
			disablePopupb();
		}
	});

});
