Basically, yes. I think you are being a little timid, which is understandable.
One thing though, if you are importing various menus. It would be best to use as plain of a page as possible. For example, if the existing menu (when the page loads) were an external page, it could look like so:
Code:
<a href="javascript:ajaxpage('/code/what.htm', 'rightcolumn');"><FONT SIZE=3> ☏ <FONT SIZE=1> What is <b>met.a</b> ??</a>
<a href="javascript:ajaxpage('/code/guts.htm', 'rightcolumn');"><FONT SIZE=3> ☎ <FONT SIZE=1> <b>met.a</b> has guts</a>
<a href="javascript:ajaxpage('/code/osx.htm', 'rightcolumn');"><FONT SIZE=3> ☏ <FONT SIZE=1> <b>met.a</b> on Mac OSX</a>
<a href="javascript:ajaxpage('/code/win.htm', 'rightcolumn');">☎ <b>met.a</b> on Vista</a>
<a href="javascript:ajaxpage('/code/thoughts.htm', 'rightcolumn');">☎ Thoughts behind <b>met.a</b></a>
<a href="javascript:ajaxpage('/code/changelog.htm', 'rightcolumn');">☎ changelog</a>
<a href="javascript:ajaxpage('/code/feedback.htm', 'rightcolumn');">☎ feedback</a>
<a href="javascript:ajaxpage('/code/language_menu_test1.htm', 'leftcolumn');"><img border="0" src="/imagery/ES.png"></a>
Save that as englishmenu.htm or similar because you will need it if someone wants to change back to English from another language. Unfortunately I am not well versed in other languages, otherwise I could more easily give examples of other menus.
Also, there is an error on the page:
Code:
<body onload="moveWindow()" style="overflow: hidden">
The highlighted onload event refers to an unavailable function, get rid of it. I would also advise you to replace the java applet with an ordinary image, at lest for the time being. The Java applet adds unpredictable circumstances to the page and appears to be preventing it from loading normally in both Firefox and Internet Explorer. If you need an animation object, Flash would probably be a better choice, but an ordinary image would be best if it can work for you.
Bookmarks