1. All static html files contain hardcoded values of addresses and
   port numbers.These should be changed ::

	Index.html
	Interface.html
	LoadServlet.html
	MainPage.html
	MyStyle.css
	NewsGroup.html
	WelcomePage.html
	login.html

2. Extensions ::
	Due to time contraints some intersting pastures were left
untraversed. We hereby list out some of the possible extensions
to this project.

a> Interpretor : We had used a primitive interpretor to generate 
dynamic html files. Basically the html files to be generated are
encoded with the dynamic entities coded as macros such as
$$DBIS_PRODUCT_IMAGE$$. These macros are kept in a tag file
in the same directory. Both these files are loaded at runtime and
our interpretor replaces the tags by the requisite values. However
these tags are different for different files and this 
leads to duplication of tags. This can be written by having 
set tags for global tags such as port number, servlet base address
etc.

b> HtmlLoader : The html loader user hereby stores the entre file
as string and this can be dangerous when extremely huge files are
involved. A better implementation would be to use string buffer.

c> Singleton File : We used the 'Singleton Mechanism' to store
global variables. However we have only one singleton file which 
is not really good for furthr extensions. THu sit is suggested that
future versions should generate different singleton files based
on semantic treatment of the global variables.

d> Query Engine : We have used a simple query engine which justs
opens th econnection everytime a sql command is to be executed. A
better implementation can optimise the work invloved here.

e> Java Logs : This was an intended augmentation to our project.
Packages to implement this ar eavailable on net under the banner
of 'JLogs'. This is essential to maintain what all sql queries
were executed and to provide a more reliable support to the
bussinessman.

f> Packaging Servlets : Servlets in this package are not part of 
the DBIS package. Servlets in future versions can be packaged
to provide a more integrated software.

g> BussinessMan's Interface : This interface presently does
not provide advanced data manipulation techniques such as insert,
delete,update etc. This can be provided in later version for 
completeness.
