<?php
	$parameter = $_GET;
	if( $parameter{ 'Language' } == "Japanese" )
	{
		$languageNow = "Japanese";
	}
	else if( $parameter{ 'Language' } == "English" )
	{
		$languageNow = "English";
	}
	else
	{
		$languageNow = "Japanese";
	}
	$parameter{ 'Language' } = $languageNow;

	if( $parameter{ 'Language' } == "Japanese" )
	{
		$title = "ヘルプ";
	}
	else
	{
		$title = "Help";
	}
?>
<!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" lang="ja" xml:lang="ja">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<title><?php echo $title; ?></title>
<style type = "text/css">
body
{
	margin		:	0px;
	padding		:	20px;
}
a img
{
	border		:	none;
}
h1
{
	background-color		:	#004466;
	color				:	#ffffff;
	padding				:	4px 8px;
}
</style>
</head>

<body>


<h1><?php echo $title; ?></h1>
<p>
<img src = "./library/image/Panel/Help<?php echo $parameter{ 'Language' }; ?>.jpg" />
</p>

</body>
</html>
