Well, you need to remember to escape the quotes and to keep the string on one line (in the code that is) when placing the code in the menu array. In other words, if the code is like this:
Code:
<form action='http://google.com/search' method='GET'><input type='text' name='q'><input type='submit' value='Search'></form>
you would have to place it like so:
Code:
menu3[0]='<form action=\'http://google.com/search\' method=\'GET\'><input type=\'text\' name=\'q\'> <input type=\'submit\' value=\'Search\'></form>'
Hope this helps.
Bookmarks