$(document).ready(function() {
});
  $.setupJMPopups({
	 screenLockerBackground: "#000",
	 screenLockerOpacity: "0.7"
  });

  function openAjaxPopupSendForm(sLng) {
   $.openPopupLayer({
	  name: "ajaxContactForm",
	  width: 550,
		url: "/a_contact_form.php",
		parameters: {sLng:sLng},
     success: 
            function(data) {
              },
            beforeClose: 
            function(data) {
              var bReload = $("#bReload").val();
              },
            afterClose: 
            function() {
              }
					});
				}

