// JavaScript Document
function signup(){
  if (document.getElementById('usr').value == ''){
    alert("Введите имя!");
	document.getElementById('usr').focus();
  }
  else if (document.getElementById('email').value == ''){
    alert("Введите свой адрес E-Mail!");
	document.getElementById('email').focus();
  }
  else if (checkMail(document.getElementById('email').value)){
    alert("Введен неправильный E-Mail!");
	document.getElementById('email').select();
	document.getElementById('email').focus();
  }  else if (document.getElementById('msg').value == ''){
    alert("Вы не задали вопрос!");
	document.getElementById('msg').focus();
  } 
  else { document.getElementById('form_q').submit(); }
}

function checkMail(email){
	var filter  = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if (filter.test(email)) 
	{ return false; }
	else { return true; }
}
