예제 #1
0
				<li>Administration</li>
			</a><br/>
			<a href='javascript:void(0)' class="selectionLink" id="loginButton">
				<li><?php 
$identification->displayLoginText();
?>
</li>
			</a>
		</ul>
	</div> <!-- end of div .centering -->

	<script>


		<?php 
$identification->generateLoginJsCode();
?>


		document.getElementById("loginBackground").onclick = function () {
			document.getElementById("loginBackground").style.display = "none";
			document.getElementById("loginDiv").style.display = "none";
		};

		document.onkeydown = function (event) {
			if (event.keyCode == 13 && (document.getElementById("loginDiv").style.display == "block")) // 13 <=> enter key
			{
				document.getElementById("loginForm").submit();
			}
		};
	</script>