function regulamin_check()
{
	h = document.getElementById('scid');
	if (h.value == "0") {
		alert('Aby dodać stronę do katalogu, przejdź do wybranej podkategorii');
		return false;
	}
	
	
	h = document.getElementById('regulamin');
	if (h.checked) {
			return true;
	}
	else {
		alert('Aby dodać stronę do katalogu, musisz zaakceptować regulamin.');
		return false;
	}
}
