function isAvailableEmail(sEmail) {
var regexp = /^([a-zA-Z0-9_\.-])+@(([a-zA-Z0-9-])+\.)+([a-zA-Z0-9]{2,4})+$/;
return regexp.test(sEmail);
}