function nullOptions(aMenu){
    var tot=aMenu.options.length

    for (i=0;i<tot;i++)
    {
        aMenu.options[i]=null
    }
    aMenu.options.length=0;
}

function goDMA(aMenu){
if (aMenu.options.value!="none")
{
location=aMenu.options[aMenu.selectedIndex].value
} 
}
