function valid_form(pola,formik) {
	y=true;
	for (var i = 0; i < pola.length; i++) {
		if (document.forms[formik].elements[pola[i]].value=='') {
			document.forms[formik].elements[pola[i]].style.border='solid 1px #FF0000';
			document.forms[formik].elements[pola[i]].style.background='#FFECED';
			document.forms[formik].elements[pola[i]].style.color='#A61217';
			y=false;
		}
	}
	
	
	if (y==false) {
		alert("Wypełnij pola oznaczone na czerwono");
	}else	if(document.forms['firma'].elements['passwd'].value!=document.forms['firma'].elements['passwd2'].value)
	{
		alert("Hasło i jego powtórzenie są różne");
		y=false;
	}else	if(!document.forms['firma'].elements['regulamin'].checked)
	{
		alert("Wymagana akceptacja regulaminu");
		y=false;
	}else if(!document.forms['firma'].elements['przetwarzanie'].checked)
	{
		alert("Wymagana zgoda na przechowywanie i przetwarzanie danych osobowych");
		y=false;
	}	
	
	
	return y;
}

function valid_mail() {
	y=true;
	for (var i = 0; i < pola.length; i++) {
		if (document.forms['firma2'].elements['mail'].value=='') {
			document.forms['firma2'].elements['mail'].style.border='solid 1px #FF0000';
			document.forms['firma2'].elements['mail'].style.background='#FFECED';
			document.forms['firma2'].elements['mail'].style.color='#A61217';
			y=false;
		}
	}
	
	
	if (y==false) {
		alert("Wypełnij pola oznaczone na czerwono");
	}	
	
	
	return y;
}

function valid_user() {
	y=true;
	
		if (document.forms['firma3'].elements['mail'].value=='') {
			document.forms['firma3'].elements['mail'].style.border='solid 1px #FF0000';
			document.forms['firma3'].elements['mail'].style.background='#FFECED';
			document.forms['firma3'].elements['mail'].style.color='#A61217';
			y=false;
		}else if (document.forms['firma3'].elements['password'].value=='') {
			document.forms['firma3'].elements['password'].style.border='solid 1px #FF0000';
			document.forms['firma3'].elements['password'].style.background='#FFECED';
			document.forms['firma3'].elements['password'].style.color='#A61217';
			y=false;
		}
	
	
	
	if (y==false) {
		alert("Wypełnij pola oznaczone na czerwono");
	}	
	
	
	return y;
}

function valid_produkt_send(pola) {
	y=true;
	
		if (document.forms['produkt_send'].elements['imie'].value==''
		|| document.forms['produkt_send'].elements['imie'].value=='Twoje imię'
		) {
			document.forms['produkt_send'].elements['imie'].style.border='solid 1px #FF0000';
			document.forms['produkt_send'].elements['imie'].style.background='#FFECED';
			document.forms['produkt_send'].elements['imie'].style.color='#A61217';
			y=false;
		}
		
		if (document.forms['produkt_send'].elements['email'].value==''
		|| document.forms['produkt_send'].elements['email'].value=='E-mail znajomego'
		) {
			document.forms['produkt_send'].elements['email'].style.border='solid 1px #FF0000';
			document.forms['produkt_send'].elements['email'].style.background='#FFECED';
			document.forms['produkt_send'].elements['email'].style.color='#A61217';
			y=false;
		}
		
			if (document.forms['produkt_send'].elements['tresc'].value==''	) {
			document.forms['produkt_send'].elements['tresc'].style.border='solid 1px #FF0000';
			document.forms['produkt_send'].elements['tresc'].style.background='#FFECED';
			document.forms['produkt_send'].elements['tresc'].style.color='#A61217';
			y=false;
		}
	
	
	
	if (y==false) {
		alert("Wypełnij pola oznaczone na czerwono");
	}	
	return y;
}
