Hi nippi!
First.
English is not my native language so I'm not sure that I understand you right. What is slab button and fever extension?
You may have as many functions as many you need just separate them by
;
like this:
<.... onClick="ValidateForm(); SubmitForm()">
Second.
If you need to validate and then submit the form the best solutiond is to return value of ValidateForm() function (true if everything's correct ans false otherway) to submit form. I usually do it like this:
<form name="form1" method="post" action="file.asp"
onSubmit="return CheckOnSubmit()">
<input ...>
<input ...>
<input type="submit">
</form>
...and somewhere above JS function:
function CheckOnSubmit()
{
var e="",df=document.form1;
if (df.Name.value == ""

e+=" Name is required ";
if (e)
{
alert(e);
return false; //if form NOT OK
}
else {
return true; } //if form OK
}
Is it what you need or am I wrong?
Good Luck!