function doReg(){
	if(!$('termsCB').checked){
		alert('Please review and agree to the terms and conditions of use');
		$('termsCB').focus;
		return false;
	}
	
	return true;
	
	/*
	$('submitButton').style.display = "none";
	$('loadingGraphic').style.display = "block";
	*/
} 