function sendEmail()
{
	email = document.getElementById('email').value;
	pytanie = document.getElementById('pytanie').value;
	data = '&email=' + email + "&pytanie=" + pytanie;
	ajaxRequestData('depcontent', 'send.php', 'post', data);
	form = document.getElementById('formularz').reset();
	return false;
}
