
	function Warning(text,el)
	{
		if (text == '') {
			alert('Wpisz poprawne dane do pola!')
		} else {
			alert(text);	
		}
		el.focus()
		el.style.backgroundColor="#FF9999"
		return false;
	}
		function checkemail(mail){
	var str=mail
	var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
	if (filter.test(str)){
	return true;
	}else{
	return false;
	}
	
	}
	function checkbae(mail){
	if (document.layers||document.getElementById||document.all)
	return checkemail(mail)
	else
	return true
	}
	function checkForm() {
		
		forma.imie.style.backgroundColor="#FFFFFF";
		forma.telefon.style.backgroundColor="#FFFFFF";
		forma.email.style.backgroundColor="#FFFFFF";
		forma.temat.style.backgroundColor="#FFFFFF";
		forma.tresc.style.backgroundColor="#FFFFFF";
		if (document.forma.imie.value==""){
			 return Warning('Wypelnij pole Imie i nazwsiko!',forma.imie);
			 return false;	
		}
		if (document.forma.telefon.value==""){
			 return Warning('Wypelnij pole Telefon kontaktowy!',forma.telefon);
			 return false;	
		}
		if (checkbae(document.forma.email.value)==false){
			 return Warning('Wypelnij pole E-mail!',forma.email);
			 return false;	
		}
		if (document.forma.temat.value==""){
			 return Warning('Wypelnij pole Temat!',forma.temat);
			 return false;	
		}
		if (document.forma.tresc.value==""){
			 return Warning('Wypelnij pole Tresc!',forma.tresc);
			 return false;	
		}
		
	return true;
	}
