[1] If there are _no_ material side-effect scripted into the functions, you can do this.
[tt]
<form name="register" action="register.cfm" method="post" onsubmit="return something(this) && othersomething(this)">
[/tt]
[2] If there are material side-side scripted into them and you don't want to miss them, you can do this.
[tt]
<form name="register" action="register.cfm" method="post" onsubmit="var x=something(this); var y=othersomething(this); return x && y;">[/tt]