function validate_simple ( )
{

    valid = true;

    if (document.simpleregister.cvfield.value == ""){
        alert("A CV was not supplied. Please try again. Thank you.");
        valid = false;
    }

    return valid;
	
}


