Email Check – Stage 1
document.getElementById('emailResult').innerHTML = "checking..."; email_entered = document.getElementById('emailAddress').value; length_of_email = email_entered.length; position_of_at = email_entered.indexOf('@'); another_at = email_entered.indexOf('@',(position_of_at+1)); position_of_dot = email_entered.indexOf('.');