how to make a field focus on a form with accordion?

how to make a field focus on a form with accordion?


I all,
I have a form with many field.
I want to use accordion to separate field on sections.
I have a fields validation when i press button submit.
if a field is empty, an error message appear, but i want "focused" the
field empty.
I have tried with this on a function:
if (mail_form.champ12.value == "" || mail_form.champ12.value == " ") {
alert("Effectif à assurer : ce champ est obligatoire")
mail_form.champ12.focus()
return false
}
but cause a validation error with ie7.
Thanks for your help.