var time_to_show=5000;var animate_from_top=1500;var popupStatus=0;jQuery.fn.delay=function(time,callback){jQuery.fx.step.delay=function(){};return this.animate({delay:1},time,callback);}
function loadPopup(){var windowWidth=document.documentElement.clientWidth;var windowHeight=document.documentElement.clientHeight;var popupHeight=$("#popupContact").height();var popupWidth=$("#popupContact").width();var _top=(windowHeight/2-popupHeight/2)-210;var _top2=(windowHeight/2-popupHeight/2)-35;jQuery("#popupContact").css({"position":"absolute","top":"-350px","z-index":"110000","height":"220px","left":"277px"});if(popupStatus==0){jQuery("#backgroundPopup").delay(time_to_show).css({"opacity":"0.7"});jQuery("#backgroundPopup").fadeIn("slow");jQuery("#popupContact").delay(time_to_show).animate({top:_top+"px",height:"220px"},animate_from_top)
popupStatus=1;}}
function disablePopup(){if(popupStatus==1){jQuery("#backgroundPopup").fadeOut("slow");jQuery("#popupContact").animate({height:"1px",top:"-400px"},700,"swing");popupStatus=0;}}
jQuery(document).ready(function(){loadPopup();jQuery("#popupContactClose").click(function(){disablePopup();});jQuery(document).keypress(function(e){if(e.keyCode==27&&popupStatus==1){disablePopup();}});});
