function localAction(obj){ //alert('localAction');
	if ( validateForm(obj,reqflds[obj.naction.value]) ){
		var naction = obj.naction.value;
		switch (naction){
			case 'btn_become_c3':
				if (confirm('Do you want to become a C3?\n\nA C3 number will be assigned to you. You will be required to complete your company\'s information and to add certified technicians to your profile in order to be approved.\n\nClick OK to confirm, cancel otherwise.')) return true; else return false;
				break;
			default:
				return false;
				break;
		}
	}
	else return false;
 }