function isBlank(theField){ if ( theField.value == "" ) { alert(theField.name+": This field is required. Please retry"); theField.focus(); return; } }