

function Focus(control) {

  control.focus();

  control.select();

}



function IsEmailCorrect(email) {

  return email.match(/^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@([a-zA-Z0-9-]+\.)+([a-zA-Z]{2,3})$/)!=null;

}



function IsEmpty(pole) {

  if (pole=='') 

  	return true

	else

	return false

}







function sprawdz_form()

{

if (IsEmpty(document.getElementById('autor').value)) {
    alert('Proszę podać imię i nazwisko.');
    //Focus(document.getElementById('autor'));
    return false;
  }

if (!IsEmailCorrect(document.getElementById('mail').value)) {
	alert('Proszę podać poprawny adres e-mail.');
	//Focus(document.getElementById('mail'));
	return false;
}



return true;

}