﻿//SETTING UP OUR POPUP
//0 means disabled; 1 means enabled;
var popupStatus = 0;

//loading popup with jQuery 
function loadPopup(){
	//loads popup only if it is disabled
	if(popupStatus==0){
		jQuery("#backgroundPopup").css({
			"opacity": "0.6"
		});
		jQuery("#backgroundPopup").fadeIn("slow");
		jQuery("#popupContact").fadeIn("slow");
		popupStatus = 1;
	}
}

//disabling popup with jQuery
function disablePopup(){
	//disables popup only if it is enabled
	if(popupStatus==1){
		
		jQuery("#backgroundPopup").fadeIn("slow");
		jQuery("#backgroundPopup").css({
			"opacity": "1"
		});
		jQuery("#popupContact").fadeOut("slow");
		
		popupStatus = 0;
	}
}

//position popup
function positionPopup(top, left, width, height){
	jQuery("#popupContact").css({
		"position": "absolute",
		"top": top,
		"left": left,
		"width":width,
		"height":height
	});
	
	
}


