function submit_register_form() {
    initForm('form1');
    initInput('txtName', '');
    isNotEmptyString('Please supply the following information: Name');
    initInput('txtCompany', '');
    isNotEmptyString('Please supply the following information: Company name');
    initInput('txtPhone', '');
    isNotEmptyString('Please supply the following information: Phone number');
    submitFormIfValid();
    return false;
}
