function validateContactForm () {

    var isOkay = true;

    if ( document.getElementById( "name" ).value.length == 0
            && document.getElementById( "email" ).value.length == 0 ) {


        isOkay = false;
        
        alert( 'Can\'t Send Information!\nBoth a Name and Email Address are required.' );
    }

    return isOkay;


}