function check_contact() {
	var ref = document.kontakt;
	for(i=0;i<ref.length;i++) {
		if(ref[i].name.substr(0,2)=="r_") {
			if(ref[i].value=='') {
				alert('Nie wypełniono wszystkich obowiązkowych pól.');
				return false;
			};
		};
	};
	return true;
};
