The problem I think everyone is having with helping you on this issue is that html and JSP are two differant things. JSP is a server-side language that allows you to dynamically create HTML to send to the browser. The browser doesn't care if it is a JSP page, and ASP page, a PHP page, a cold fusion page, etc... as long as the content type (or MIME type) of the page is HTML it will render it as an html file.
petey was correct above in saying that all you need to do is change the extension. Since there is nothing in these files that needs to be processed as JSP they will still be static pages, but will cause extra load on your server as they need to be processed at least once for the server to realize there is nothing to do in them.
If, in fact, you meant that you would like to combine a large number of pages into a JSP script, this will take more information, as it could be anything from a listing of phone numbers that you would like to dynamically generate rather than type in manually to a members only site that currently uses javascript (client-side) to allow people to log in.
-Tarwn ________________________________________________________________________________
Want to get great answers to your Tek-Tips questions? Have a look at faq333-2924