//	BOFH mjz@biuro.net.pl

/*
 * pokaz formularz
 *
 */
function showForm() {
	document.getElementById('formlayer').style.display = 'block';
}

/*
 * sprawdz formularz kontaktowy
 *
 */
function checkForm() {
	pForm = document.contact;
	if ( pForm.email.value == '' || pForm.tresc.value == '' ) {
	    alert('Pamiętaj aby podac nam swój email oraz treść pytania do Nas.');
	    return false;
	}
	return true;
}
