<!--

function activate()

        {

        thenumber = document.theform.thepulldown.selectedIndex;

        changeto =

document.theform.thepulldown.options[thenumber].value;

        if (changeto == "gonowhere")

                {

                // do nothing

                
}

        else

                {

                window.top.location = changeto

                }

        }





function automatic()

        {

        thenumber = document.theform.thepulldown.selectedIndex;

        changeto =

document.theform.thepulldown.options[thenumber].value;

        if (changeto == "gonowhere")

                {

                // do nothing


}

        else

                {

                window.top.location = changeto

                }

        }



function backtonorm(){
var uagent=navigator.userAgent;
if(uagent.indexOf('Mac',0)>-1){
        window.scroll(0,0);
}

}

// -->

