$(document).ready(function() {


		 
});

/* 

	Blankwin function 
	written by Alen Grakalic, provided by Css Globe (cssglobe.com)
	please visit http://cssglobe.com/post/1281/open-external-links-in-new-window-automatically/ for more info
	
*/

this.blankwin = function(){
	var hostname = window.location.hostname;
	hostname = hostname.replace("www.","").toLowerCase();
	var a = document.getElementsByTagName("a");	
	this.check = function(obj){
		var href = obj.href.toLowerCase();
		return (href.indexOf("http://")!=-1 && href.indexOf(hostname)==-1) ? true : false;				
	};
	this.set = function(obj){
		obj.target = "_blank";
		obj.className = obj.className + " external";
	};	
	for (var i=0;i<a.length;i++){
		if(check(a[i])) set(a[i]);
	};		
};



// script initiates on page load. 

this.addEvent = function(obj,type,fn){
	if(obj.attachEvent){
		obj['e'+type+fn] = fn;
		obj[type+fn] = function(){obj['e'+type+fn](window.event );}
		obj.attachEvent('on'+type, obj[type+fn]);
	} else {
		obj.addEventListener(type,fn,false);
	};
};
addEvent(window,"load",blankwin);




function sprawdzForm() {
	var reg;
	document.getElementById("email").style.borderColor="#000000";
	document.getElementById("nazwisko").style.borderColor="#000000";
	document.getElementById("telefon").style.borderColor="#000000";
	document.getElementById("wiadomosc").style.borderColor="#000000";
	
	document.getElementById("email").style.backgroundColor="#ffffff";
	document.getElementById("nazwisko").style.backgroundColor="#ffffff";
	document.getElementById("telefon").style.backgroundColor="#ffffff";
	document.getElementById("wiadomosc").style.backgroundColor="#ffffff";
	
	var email=true;	
	reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
	if (!reg.test(document.getElementById("email").value) || document.getElementById("email").value.length<=7) {
		document.getElementById("email").style.borderColor="red";
		document.getElementById("email").style.backgroundColor="#ffe9e9";
		email=false;
	}
	
	var nazwisko=true;
	reg = /^[A-Za-zęóąśłżźćńĘÓĄŚŁŻŹĆŃ]+( ){1}[A-Za-zęóąśłżźćńĘÓĄŚŁŻŹĆŃ\-]+$/;
	if (!reg.test(document.getElementById("nazwisko").value) || document.getElementById("nazwisko").value.length<=5) {
		document.getElementById("nazwisko").style.borderColor="red";
		document.getElementById("nazwisko").style.backgroundColor="#ffe9e9";
		nazwisko=false;
	}

	var telefon=true;
	reg = /^[0-9\-\(\) ]*$/;
	if (!reg.test(document.getElementById("telefon").value) || document.getElementById("telefon").value.length<7) {
		document.getElementById("telefon").style.borderColor="red";
		document.getElementById("telefon").style.backgroundColor="#ffe9e9";
		telefon=false;
	}
	
	var wiadomosc=true;
	if(document.getElementById("wiadomosc").value.length<=20) {
		document.getElementById("wiadomosc").style.borderColor="red";
		document.getElementById("wiadomosc").style.backgroundColor="#ffe9e9";
		wiadomosc=false;
	}
	
	if(email && telefon && nazwisko && wiadomosc) {
		return true;
	}	
	return false;
}