

function htmlpointnews(what) {
        var selection = document.menuform.menunews.selectedIndex;
        var newloc = null;
if (what == 'menunews') {
                       if (selection == 1) newloc ='../../news02.htm';
                else if (selection == 2) newloc ='../../news03.htm';
                else if (selection == 3) newloc ='../../news04.htm';
                else if (selection == 4) newloc ='../../news05.htm';
                else if (selection == 5) newloc ='../../news.htm';
                        }
        if (newloc) setTimeout("location = \'" + newloc + "\'", 0);
}
