$(document).ready(function() { 

// contact form validation
$("#contact-form").validate({      		       
	rules: {
		imie : "required",
		nazwisko: "required",
		email: {
			required: true,
			email: true
		},
		telefon: "required",	
		miasto: "required",		
		komentarz: "required"
	},
	messages: {
		imie: "Proszę wpisać imię.",
		nazwisko: "Proszę wpisać nazwisko.",
		email: {
			required: "Proszę wpisać adres e-mail.",
			email: "Proszę wpisać poprawny adres e-mail wg wzoru login@domena.com."
		},
		telefon: "Proszę wpisać numer telefonu.",
		miasto: "Proszę wpisać miasto.",
		komentarz: "Proszę wpisać treść wiadomości."
	},
	submitHandler: function(form) {
		$("#contact-form :submit").attr("disabled","disabled");
  	$(form).ajaxSubmit(); 		
  }
});
});

// popup
function popup (href, width, height){	

	var windowHeight = window.innerHeight || document.body.offsetHeight;
	var windowWidth = window.innerWidth || document.body.offsetWidth;

  var top = Math.ceil((windowHeight/2) - (height/2));
  var left = Math.ceil((windowWidth/2) - (width/2));
	
	if(top>400) top = 200;

  newWindow = open(href ,'window' , 'width='+width+', height='+height+', top='+top+', left='+left+', menubar=no, status=no, locationbar=no, scrollbars=no, resizeable=no');
	
}
