<?php SESSION_START(); ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
	<head>
			<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
			<title>V.I.C. - Deutsche Domänen</title>
			
			<script src="extend.js.php" type="text/javascript"></script>
			<?php
				require_once("country.php");
				require_once("DomainLibrary.php");
			?>
			
	</head>
	
	<body>
		<?php
		//overhand language
			$lang = "de";	
			if (isset($_GET["language"]))
			{
				$lang = $_GET["language"];
			}	
			$_SESSION["language"] = $lang;
			
			if (isset($_GET["country_id"]))
			{
				$country_id = $_GET["country_id"];
			}	
			$_SESSION["country_id"] = $country_id; 
			
			country_header($country_id, $lang);
					
			echo '<ul>';
			
			domain_lister_with_links($country_id, $lang);
			
			echo '</ul>';

			domain_description_lister($country_id, $lang);
		?>
	</body>
</html>