1<!DOCTYPE HTML>
2<html>
3
4<!--
5  pgn4web javascript chessboard
6  copyright (C) 2009-2014 Paolo Casaschi
7  see README file and http://pgn4web.casaschi.net
8  for credits, license and more details
9-->
10
11<head>
12
13<link rel="icon" sizes="16x16" href="pawn.ico" />
14
15
16<!-- DeploymentCheck: google analytics code -->
17
18<!-- end DeploymentCheck -->
19
20
21<script type="text/javascript">
22<!-- hide javascript from non-javascript browsers
23"use strict";
24
25if (window.location.host.match("board-generator\.")) {
26  window.location.href = "board-generator.html" + window.location.search + window.location.hash;
27} else if (window.location.host.match("board\.")) {
28  window.location.href = "board.html" + window.location.search + window.location.hash;
29} else if (window.location.host.match("demo\.")) {
30  window.location.href = "demo.html" + window.location.search + window.location.hash;
31} else if (window.location.host.match("viewer\.")) {
32  window.location.href = "viewer.php" + window.location.search + window.location.hash;
33} else if (window.location.host.match("live\.")) {
34  window.location.href = "live.html" + window.location.search + window.location.hash;
35} else if (window.location.host.match("test\.")) {
36  window.location.href = "test.html" + window.location.search + window.location.hash;
37} else {
38  window.location.href = "home.html" + window.location.search + window.location.hash;
39}
40
41//-->
42</script>
43
44<noscript>
45your web browser and/or your host do not support javascript as required by the pgn4web site
46</noscript>
47
48</head>
49
50<body>
51</body>
52
53</html>
54