function completionCheck() {
    var error = 0;
    
	$('first_name_title').className = 'contact';
        $('last_name_title').className = 'contact';
        $('email_title').className = 'contact';
        $('company_title').className = 'contact';
        $('address_title').className = 'contact';
        $('city_title').className = 'contact';
        $('state_title').className = 'contact';
        $('country_title').className = 'contact';
        $('phone_title').className = 'contact';
        $('fax_title').className = 'contact';
        $('type_of_business_title').className = 'contact';
        $('i_am_interested_in_title').className = 'contact';
        $('employment_title').className = 'contact';
        $('employment_yes_title').className = 'contact';
        $('hear_about_us_title').className = 'contact';
        $('comments_title').className = 'contact';
	$('error').className = 'contact';        
    
    if (!$('First_Name').value) {
        $('first_name_title').className = 'missing';
	error = 1;
    }
    if (!$('Last_Name').value) {
        $('last_name_title').className = 'missing';
        error = 1;
    }
    if (!$('Title').value) {
	$('title_title').className = 'missing';
	error = 1;
    }
    if (!$('Email_Address').value) {
        $('email_title').className = 'missing';
        error = 1;
    }
    if (!$('Company').value) {
        $('company_title').className = 'missing';
        error = 1;
    }
    if (!$('Address').value) {
        $('address_title').className = 'missing';
        error = 1;
    }
    if (!$('City').value) {
        $('city_title').className = 'missing';
        error = 1;
    }
    if (!$('State').value) {
        $('state_title').className = 'missing';
        error = 1;
    }
    if (!$('Zip').value) {
	$('zip_title').className = 'missing';
	error = 1;
    }
    if (!$('Country').value) {
        $('country_title').className = 'missing';
        error = 1;
    }
    if (!$('Phone').value) {
        $('phone_title').className = 'missing';
        error = 1;
    }
    if (!$('Fax').value) {
        $('fax_title').className = 'missing';
        error = 1;
    }
    if (!$('Type_of_business').value) {
	$('type_of_business_title').className = 'missing';
	error = 1;
    }
    if (!($('I_am_interested_in_0').checked || $('I_am_interested_in_1').checked || $('I_am_interested_in_2').checked || $('I_am_interested_in_3').checked || $('I_am_interested_in_4').checked)) {
        $('i_am_interested_in_title').className = 'missing';
        error = 1;
    }
    var interested = document['contact_form']['I_am_interested_in_Employment_Opportunities'];
    if (!interested[0].checked && !interested[1].checked ) {
        $('employment_title').className = 'missing';
        error = 1;
    }
    if ( interested[0].checked && !$('employment_0').checked && !$('employment_1').checked && !$('employment_2').checked ) {
        $('employment_yes_title').className = 'missing';
        error = 1; 
    }
    if (!$('how_did_you_hear_about_us').value) {
        $('hear_about_us_title').className = 'missing';
        error = 1;
    }
    if (!$('comments').value) {
        $('comments_title').className = 'missing';
        error = 1;
    }
    if (error == 0) {
	$('email').value = $('Email_Address').value;
	$('realname').value = $('First_Name').value + " " + $('Last_Name').value;

        $('contact_form').submit();
    }
    else { 
	$('error').innerHTML = "The following fields were left blank in your submission form:";
	$('error').className = 'missing';
    }
    
}
