I think you are talking about where, at the moment, you have this:
Code:
menu5[1]='<a href="#">Mailing Address</a>'
Since you are using ' to delimit the link string, if you use ' inside it, you must escape it:
Code:
menu5[1]='<a href="#" onclick="MM_openBrWindow(\'address.html\',\'\',\'width=160,height=160\');return false;">Mailing Address</a>'
And you should return false if you don't want the default link behavior ("#" in this case, which reloads to the top of the page in many browsers).
You could also do it like so:
Code:
menu5[1]="<a href=\"#\" onclick=\"MM_openBrWindow('address.html','','width=160,height=160');return false;\">Mailing Address</a>"
which is a little easier on the eye.
Bookmarks