function $(el)
{
	return document.getElementById(el);
}
function validate() 
{
	if ( !$('regulamin').checked )
	{
		alert('Musisz zaznaczyć, iż zapoznałeś się z Regulaminem');
		return false;
	}
	if ( $('telefon').value == '' &&  $('email').value == '' )
	{
		alert('Musisz podać jakąś formę kontakt: email lub telefon');
		return false;
	}

	return true;
}