The AdvStates dreamweaver extension creates a drop down list of the 48 or 50
U.S. states, U.S. Territories, and Canadian Provinces. Unfortunately, New
Mexico is missing from the list. I have been unable to contact the creator of
this extension.


To fix this locally, you need to find the AdvStates.htm file, located maybe
someplace like \someUser\Application Data\Macromedia\Dreamweaver MX
2004\Configuration\Objects\Forms\AdvStates.htm (in Windows, anyway).

In that file you'll see how all the states are listed alphabetically. So find
the correct place for New Mexico (between New Jersey and New York) and insert
the new code similar to the others:

if (fld_values=='full') { ourTag += '<option value="New Mexico">';} else
{ourTag += '<option value="NM">';}
if (fld_labels=='full') { ourTag += 'New Mexico';} else {ourTag +='NM';}


Save the file, and that should do it. :)

Overall, this is a pretty convenient extension.
--
Dennis K