I am dealing with forms with respect to dom scripting ,

in the form for the on submit event , it has areturn value ie

form.onsubmit = ' return Search();' ;

this seems to work in Mozilla but not in IE

i also tried ,

Form.onsubmit = function submitSearch()
{
return Search();
}

Search is a javascript function...