function check() {
	var errors='Proszę podać:\n';
	if (document.cform.subject.value=='')
		errors = errors+'- Temat wiadomości\n';
	if (document.cform.message.value=='')
		errors = errors+'- Treść wiadomości\n';
	if (document.cform.name.value=='')
		errors = errors+'- imię i nazwisko\n';
	if (document.cform.phone.value=='')
		errors = errors+'- Numer telefonu\n';
	if ( document.cform.email.value=='' )
		errors = errors+'- Zwrotny adres e-mail';

	if (errors!='Proszę podać:\n') {
		alert(errors);
		return false;
	} else
		return true;
}
