Question about dropdown menus in DWMX2004

I've done dropdown menus for a few buttons on a client's website and I've run into a strange problem. For each item on the dropdown, where there should be spaces, there are accented E's (capital E's with the "^" over top).

Here's a link: http://www.anasmm.com/mar/

There are other dropdown menus on the page and the one underneath "Directions" is the only one with this problem. What is causing this and what can be done to fix it? Any help is greatly appreciated!

[489 byte] By [Arise257a] at [2007-11-27 5:48:47]
# 1
What does that have to do with Java Programming?Anyway, what's causing it is that there are Ê characters in the code (at least that's what I see via View Source), so you see Ê characters in the user interface. Change them to blanks and you will see blanks.
DrClapa at 2007-7-12 15:34:35 > top of Java-index,Java Essentials,New To Java...
# 2

You are in the wrong section but I can help you.

When you are making your drop down menu

have have this.

mm_menu_0305114324_0_1.addMenuItem("Huntingdon蔞alley","location='dirHuntingdonVal.html'");

Notice the ?this needs to be a space which should be either a space or use this

mm_menu_0305114324_0_1.addMenuItem("Huntingdon Valley","location='dirHuntingdonVal.html'");[/

which equals to a space

Red

Message was edited by:

SandyRed

Message was edited by:

SandyRed

Message was edited by:

SandyRed

SandyReda at 2007-7-12 15:34:35 > top of Java-index,Java Essentials,New To Java...