^Error: tag <input> missing required attribute "name".

Iam using the code:<br />
<br />
<form style="float: left"><br />
<input type="button" value="View Large" onClick="javascript:popUp('http://townesquaremall.150m.com/home_furnishings/furniture/76445.htm')"><br />
</form><br />
<br />
To open a new window to view large pictures on my site, when I do a test I get: ^Error: tag <input> missing required attribute "name".<br />
<br />
I know that <input type="button" is where the error lyes, I tried using submit in the place of button but works porly.<br />
<br />
What must I do?<!--content-->Try giving <input> a name attribute.<br />
<br />
<form style="float: left"><br />
<input type="button" name="popup_button" value="View Large" onClick="javascriptopUp('http://townesquaremall.150m.com/home_furnishings/furniture/76445.htm')"><br />
</form><!--content-->Also toss the javascript: in the onclick.<!--content-->
 
Top