<%
/***************************************************************
* mapBase
****************************************************************
* LANGUAGE: JSP
* DATE: 11.5.2006
* AUTHOR(S): Ari Perälä
****************************************************************
* COPYRIGHT(C) Kiiruna-Projektiryhmä
* Limited rights granted. Please refer to GPL license.
* See gpl.txt for more information.
****************************************************************
* Module description: loads(includes) css-data from a file, 
*	thats name is given as a parameter. Loads the map of Finland 
* as default, if no parameters are given.  
****************************************************************
* UPDATES:
****************************************************************
* xx.x.2006 Initial release
* xx.x.2006
***************************************************************/
%>
<html>
<head>Ze Map of Something</head>
<body>
<% 
String s = request.getParameter("map");

if (s == null)
	 s = "finland.jsp";
%>

<jsp:include page= '<%= s %>' >
		<jsp:param name="map" value="" />
</jsp:include>

</body>
</html>