You're welcome napster. Have a nice night, and be sure to mark the thread resolved... When you have some spare time, take a look at the W3Cs specifications and standards for HTML/XHTML and quoting attributes... You definitely want to get into the practice now, before strict enforcement is built into browsers.
Think about it like this: Say you have an input:
<input name=inputbox type=text value=$variable>
And the value of variable is "Hello World".
Well, without quotes like above, only "Hello" is passed in the form... but if you put your quotes on the attributes, then the entire variable is passed properly.
<input name="inputbox" type="text" value="$variable">
(Just my 2 cents)