on second thought, try this:
Code:
<form name="docSortList">
<select id="sort" name="sort">
<option value="sort(sortName.XMLDocument);">Sort By Name</option>
<option value="sort(sortNumber.XMLDocument);">Sort By Patient ID</option>
<option value="sort(getAtoM.XMLDocument);">Get Names A through M</option>
</select>
<input type="button" onClick="location=document.getElementById('sort').value;" value="GO">
</form>
theoretically this should work, though im not too familiar with XML so im unsure of your address syntax, but the same syntax should work if you did this:
Code:
<form name="docSortList">
<select id="sort" name="sort">
<option value="http://yahoo.com">Yahoo!</option>
<option value="http://google.com">Google</option>
<option value="http://bing.com">Bing</option>
</select>
<input type="button" onClick="window.location=document.getElementById('sort').value" value="GO">
</form>
Bookmarks