XHTML Strict does not have a name attribute for the form tag. I have always refered to a form in javascript by using document.formname. Since I no longer have a name attribute, how do I refer to the form? I can not use document.forms[0] either, since with server side includes I may not know how many forms are on the page. XHTML does allow the id attribute, but I do not know how to use that to access the form. What is the best cross-browser way to refer to a specific form in javascript without the name attribute?