Installation requirements:
1) A web server which can execute Java Server Pages needs to be running. E.g. Apache Tomcat http://tomcat.apache.org/
2) A relational database management system such as mySQl must be installed.


--------------------------------------------------------------------------------------------------

Database:
Use the "db.sql" file in the zip-archive to set up the database's tables. 
The mySQL command for this operation is: mysql -u username -ppassword database_name < db.sql
For ohter database systems look up the commands in the corresponding program references.


Reservation System:
In the file SQL.jsp three values habe to be entered in the file's two funktions.
      	String url = "jdbc:mysql://localhost.localdomain/"+YOUR DATABASE NAME;

	String user = YOUR USER NAME
	String pwd =  YOUR PASSWORD
The values for these strings have to be entered in both functions.
The application's entry point is at "index.jsp".