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<title>Tilburg Fontys 1998 - round 2</title>
14
15<link href="tilb98r2.css" type="text/css" rel="stylesheet" />
16
17<link rel="icon" sizes="16x16" href="pawn.ico" />
18
19<script src="pgn4web.js" type="text/javascript"></script>
20<script type="text/javascript">
21   "use strict";
22
23   SetPgnUrl("tilb98r2.pgn");
24   SetImagePath("images/alpha/36");
25   SetImageType("png");
26   SetGameSelectorOptions(null, false, 0, 8, 0, 0, 0, 0, 10); // (head, num, chEvent, chSite, chRound, chWhite, chBlack, chResult, chDate);
27   SetCommentsIntoMoveText(false);
28   SetAutoplayDelay(2500); // milliseconds
29   SetAutostartAutoplay(true);
30   SetAutoplayNextGame(true);
31   SetInitialGame(2);
32   SetInitialHalfmove(1, true);
33   SetShortcutKeysEnabled(true);
34
35// Example below of customization of the shortcut squares
36
37clearShortcutSquares("BG", "3");
38clearShortcutSquares("BCDEFGH", "4567");
39clearShortcutSquares("A", "456");
40
41var warnedFlipBoard = false;
42function FlipBoard() { if (!warnedFlipBoard) { myAlert("warning: flip board functionality disabled", false, true); warnedFlipBoard = true; } }
43
44var oldCurrentGame;
45function customFunctionOnPgnGameLoad() {
46   if (typeof(oldCurrentGame) != "undefined") {
47      document.getElementById("game" + oldCurrentGame).className = "gamelist";
48   }
49   oldCurrentGame = currentGame;
50   document.getElementById("game" + currentGame).className = "gamelistselected moveOn";
51   SetAutoPlay(true);
52}
53
54</script>
55
56</head>
57
58<body>
59
60
61<!-- paste your PGN below and make sure you dont specify an external source with SetPgnUrl() -->
62<form style="display: none;"><textarea style="display: none;" id="pgnText">
63
64</textarea></form>
65<!-- paste your PGN above and make sure you dont specify an external source with SetPgnUrl() -->
66
67<table width="100%" cellpadding="10" cellspacing="10" border="0">
68
69  <tr>
70    <td rowspan="2" valign="top" width="372">
71      <div id="GameBoard"></div>
72    </td>
73    <td align="left" valign="top">
74      <div style="text-align: right; font-size: 16px; font-weight: bold; margin-bottom: 20px;">Tilburg Fontys 1998 - round 2</div>
75      <div style="width: 321px; text-align: left;">
76        <a id="game0" href="javascript:Init(0);" onfocus="this.blur()" class="gamelist">&nbsp;Viktor Korchnoi&nbsp; - &nbsp;Michael Adams&nbsp; &nbsp;0-1&nbsp;</a>
77        <a id="game1" href="javascript:Init(1);" onfocus="this.blur()" class="gamelist">&nbsp;Viswanathan Anand&nbsp; - &nbsp;Vladimir Kramnik&nbsp; &nbsp;1-0&nbsp;</a>
78        <a id="game2" href="javascript:Init(2);" onfocus="this.blur()" class="gamelist">&nbsp;Joel Lautier &nbsp;-&nbsp; Loek Van Wely&nbsp; &nbsp;1/2-1/2&nbsp;</a>
79        <a id="game3" href="javascript:Init(3);" onfocus="this.blur()" class="gamelist">&nbsp;Mattew Sadler&nbsp; - &nbsp;Veselin Topalov&nbsp; &nbsp;1/2-1/2&nbsp;</a>
80        <a id="game4" href="javascript:Init(4);" onfocus="this.blur()" class="gamelist">&nbsp;Vadim Zvjaginsev&nbsp; - &nbsp;Peter Leko&nbsp; &nbsp;1/2-1/2&nbsp;</a>
81        <a id="game5" href="javascript:Init(5);" onfocus="this.blur()" class="gamelist">&nbsp;Peter Svidler&nbsp; - &nbsp;Jeroen Piket&nbsp; &nbsp;1-0&nbsp;</a>
82    </td>
83  </tr>
84  <tr>
85    <td valign="bottom">
86      <div style="text-align: justify; font-size: 11px;">
87      <span id="GameText"></span> <span id="GameResult"></span>
88      </div>
89    </td>
90  </tr>
91
92</table>
93
94</body>
95
96</html>
97