

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 ='news06.htm';
                else if (selection == 6) newloc ='news07.htm';
                else if (selection == 7) newloc ='news08.htm';
                else if (selection == 8) newloc ='news09.htm';
                else if (selection == 9) newloc ='news10.htm';

                                       }
        if (newloc) setTimeout("location = \'" + newloc + "\'", 0);
}

