function sprmail(mail)
{
var test=/^[.A-Za-z0-9_-]+\@[0-9a-zA-Z]+\.+[a-zA-Z0-9]{2,4}$/;
if (! mail.value.match(test))
  { 
	$('div#after_mail').text('Prosze wpisać poprawny adres e-mailowy'); 
    mail.focus(); 
    return false;
  }
 return true;
}
function sprpuste(name)
{
var test=/.+/;
if (! name.value.match(test))
	{
	$('div#spra').text('Prosze uzupełnić wszystkie wymagane pola'); 
	name.focus();
	return false;
	}
return true;
}
