There is something very much wrong with the HTML. As you observed, elements can only have one ID attribute and ID attributes need to be unique on a page. But you can run classes together and use them multiple times on a page. SO you could use
Code:
<form action="Some_Script.php" id="product" class="myform">
or even
Code:
<form action="Some_Script.php" class="product myform">
“The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect.”
—Tim Berners-Lee, W3C Director and inventor of the World Wide Web
Bookmarks