WWW::Battrick

Changes On Branch develop
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Changes In Branch develop Excluding Merge-Ins

This is equivalent to a diff from d7a06f8d00 to a452411654

2011-10-30
17:11
merge from develop and added parser beta check-in: 56409e72c9 user: erez tags: trunk
17:10
first fossil commit check-in: efd7e36937 user: erez tags: trunk
2011-09-11
07:23
new result Leaf check-in: a452411654 user: erez.schatz@gmail.com tags: develop
2011-09-09
14:42
dies if no login, fixtures column check-in: 10b4652304 user: erez.schatz@gmail.com tags: develop
2011-09-07
15:56
Merge branch 'feature/initial-code' into develop check-in: 9917b0435d user: erezs@teleweb.co.il tags: develop
15:40
create schema check-in: 26473481a3 user: erezs@teleweb.co.il tags: develop
15:24
schemas check-in: d7a06f8d00 user: erezs@teleweb.co.il tags: trunk
14:40
first commit check-in: 2963593dad user: erezs@teleweb.co.il tags: trunk

Changes to bin/battrick.

1
2
3
4
5
6
7




8
#!/usr/bin/perl

use strict;
use warnings;

use WWW::Battrick;





WWW::Battrick::run();







>
>
>
>
|
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/perl

use strict;
use warnings;

use WWW::Battrick;

print "Username: ";
chomp (my $user = <STDIN>);
print "Password: ";
chomp (my $pass = <STDIN>);
WWW::Battrick::run($user, $pass);

Added doc/levels.html.





























































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<!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" xml:lang="en"><head>
    <title>Battrick - Rules</title>
    
  <link rel="stylesheet" type="text/css" href="levels_files/core.css">
  
    <!--[if lte IE 8]>
    
  <link rel="stylesheet" type="text/css" href="http://battrick.org/nl/ie.min.css?20100602230624" />
  
    <![endif]-->
    <meta http-equiv="content-language" content="en-gb">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <script type="text/javascript" src="levels_files/bt.js"></script>

    <script type="text/javascript"><!--//--><![CDATA[//><!--
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-2057011-1']);
    _gaq.push(['_trackPageview']);
    (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
    })();
    //--><!]]></script><script src="levels_files/ga.js" async="" type="text/javascript"></script>

  </head>
  <body id="rules">

    <div id="pagecontainer" style="margin: 0 auto;text-align: left;width:714px;">

    <div id="header">
		    <div id="banner">
			      	<div id="adrotator">
					  	
						        <a href="javascript:void(0)" onclick="adforward(19);"><img class=" gnptvizqgqxacsmmnzrg" src="levels_files/crickileaks-2.gif" id="adsource" name="adsource" alt="" width="468" height="60"></a>
					    
				    </div>
			    
			    <div id="logo" style="text-align: center; margin: 0 2px 0 0;"><img src="levels_files/logo_l.png" alt="Battrick" title="Battrick" width="250" height="71"><img src="levels_files/logo_r.png" alt="" width="456" height="71"></div>
			    <div id="tickerbox"><script type="text/javascript">btDrawTicker();</script><div style="color: rgb(255, 246, 255);" id="ticker"><div class="ticker">WELCOME TO BATTRICK!</div></div></div>
			</div>
	  <script type="text/javascript" src="levels_files/head.js"></script>

	  <script type="text/javascript">var serverClock = new Date(2011,8,7,17,1,6);</script>
	  <script type="text/javascript">
		  aTickerLines[0]="WELCOME TO BATTRICK!";
		  aTickerLines[1]="BATTRICK ... IT'S MORE THAN JUST A GAME...";
		  aTickerLines[2]="CRICKET HAS NEVER BEEN SO MUCH FUN";
	  </script>
	</div>
	</div>

  <div id="access"><a href="#page" title="Skip to content">Skip to content</a></div>
	<div id="menubarmarker"></div>
	<div style="position: relative;" id="menubarwrapper">
	
		<div id="menubar">
			<ul class="sf-js-enabled" id="topmenu">
				<li><a href="http://battrick.org/nl/news.asp">Main</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/news.asp" title="News about Battrick updates etc.">News</a></li>
						<li><a href="http://battrick.org/nl/prefs.asp" title="Set your site and game options">Preferences</a></li>
						<li><a href="http://battrick.org/nl/search.asp" title="Find players, clubs, matches and more">Search</a></li>
						<li><a href="http://battrick.org/nl/mail.asp" title="Check your BTmail">Mail</a></li>
						<li><a href="http://battrick.org/nl/btText.asp" title="Watch multiple live games at the same time">BT MultiView</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/public.asp?logoff=1" title="Log out of the game">Log Off</a></li>
					</ul>
				</li>
				<li><a href="http://battrick.org/nl/office.asp" title="Your club pavilion">Club</a>
					<ul style="display: none; visibility: hidden;">
						<li class="submenu"><a href="http://battrick.org/nl/office.asp" title="Your club pavilion">Pavilion</a>
						
							<ul style="display: none; visibility: hidden;">
							
								<li><a href="http://battrick.org/nl/leagues.asp?leagueID=5930">FC: VI.22</a></li>
							
								<li><a href="http://battrick.org/nl/leagues.asp?leagueID=1106">OD: IV.6</a></li>
								<li><a href="http://battrick.org/nl/leagues.asp?leagueID=8809">BT20: VI.1008</a></li>
							</ul>
						
						</li>
						<li class="submenu"><a href="http://battrick.org/nl/squad.asp" title="Your squad of players">Squad</a>
						
							<ul style="display: none; visibility: hidden;">
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998761">Clyde Baliram</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=1058026">Kavith Beebi</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=434802">Brad Bishop</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998763">Rory Braam</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998760">Sol Breedt</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=4015657">Mo-mo Briscoe</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998769">Eugene Butts</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=4045972">Douglas Childs</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998771">Chris Day</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998762">Dom Dliza</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998773">Elvis Graves</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998768">Lemar Hendriks</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=910990">Tom Holloway</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998759">Shevron Houghton</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998764">Neil Larkin</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998770">Desmond Lorde</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998772">Zatiah Lumsdon</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=350905">Wayne Perry</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998765">Leonard Shannon</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998766">Anton Stott</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=2771004">Gary Tandy</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=1080445">Gaz Theobald</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998767">Usman Urich</a></li>
							
							</ul>
						
						</li>
						<li><a href="http://battrick.org/nl/fixtures.asp" title="Details of upcoming matches and recent fixtures">Fixtures</a></li>
						<li><a href="http://battrick.org/nl/club.asp" title="Hire and fire backroom staff, general club info and access your youth academy">Club Info</a></li>
						<li><a href="http://battrick.org/nl/finances.asp" title="Check up on your weekly finances">Finances</a></li>
						<li><a href="http://battrick.org/nl/nets.asp" title="Assign your players to nets to train them up">Nets</a></li>
						<li><a href="http://battrick.org/nl/offers.asp" title="Offers made to and by you for players">Offers</a></li>
						<li><a href="http://battrick.org/nl/ground.asp" title="Expand your ground or change the pitch type">Ground</a></li>
						<li><a href="http://battrick.org/nl/challenges.asp" title="Accept or reject friendly game challenges">Challenges</a></li>
						<li><a href="http://battrick.org/nl/diary.asp" title="Your club's recent events">Diary</a></li>
					</ul>
				</li>
				<li><a href="http://battrick.org/nl/country.asp">Global</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/transfers.asp" title="Search for the players up for sale">Transfer Market</a></li>
						<li><a href="http://battrick.org/nl/country.asp">Country Details</a></li>
						<!--<li><a href="testSeries.asp">Test Matches</a></li>-->
						<li><a href="http://battrick.org/nl/odiSeries.asp">ODI Matches</a></li>
						<li><a href="http://battrick.org/nl/wc.asp">World Cup</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/emigrate.asp">Emigration</a></li>
					</ul>
				</li>
				<li><a href="http://battrick.org/nl/membership.asp">Membership</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/membership.asp" title="Find out what membership offers, and purchase membership for you or someone else">Details</a></li>
						
					</ul>
				</li>
				
				<li class="sfhover"><a href="http://battrick.org/nl/sledge.asp">Community</a>
					<ul style="display: block; visibility: visible; opacity: 0;">
						<li><a href="http://battrick.org/nl/sledge.asp">Sledging (Forums)</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/livechat.asp">Live Chat</a></li>
						<li><a href="http://battrick.org/nl/irc.asp">IRC Info</a></li>
						<li><a href="http://battrick.org/nl/logs.asp"><abbr title="Question and answer">Q&amp;A</abbr> Logs</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/blog.asp">Admin Blog</a></li>
						<li><a href="http://battrick.org/nl/focusgroup.asp">Focus Group</a></li>
						<li><a href="http://battrick.org/nl/bcc.asp">BT Cricket Council</a></li>
						<li><a href="http://battrick.org/nl/halloffame.asp">Hall of Fame</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/btshop.asp">Shop</a></li>
						<li><a href="http://battrick.org/nl/donations.asp" title="Donate to BT-Jargon">Donations</a></li>
						<!--<li><a href="competitions.asp">Competitions</a></li>-->
						<li><a href="http://battrick.org/nl/calendar.asp">Calendar</a></li>
						<li><a href="http://battrick.org/nl/online.asp">Online Users</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/commentary.asp">Commentary</a></li>
						<li><a href="http://battrick.org/nl/fantasy.asp">Fantasy WC</a></li>
						<li><a href="http://battrick.org/nl/cricketIRL.asp">Cricket Club Finder</a></li><!-- rename file to cricketclubs.asp -->
						<li><a href="http://battrick.org/nl/links.asp">Links</a></li>
					</ul>
				</li>
				
			    <li id="ie6sitemap"><a href="http://battrick.org/nl/sitemap.asp" title="Sitemap link for IE6 users">Sitemap</a></li>
				<li><a href="http://battrick.org/nl/rules.asp">Help</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/rules.asp">Rules</a></li>
						<li><a href="http://battrick.org/nl/newbyguide.asp">Beginners Guide</a></li>
						<li><a href="http://battrick.org/nl/faq.asp">FAQ</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/contact.asp">Contact Us</a></li>
						<li><a href="http://battrick.org/nl/adminteam.asp">Admin team</a></li>
						<li><a href="http://battrick.org/nl/privacy.asp">Privacy</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/sitemap.asp">Sitemap</a></li>
						<li><a href="http://battrick.org/nl/history.asp">History</a></li>
						<li><a href="http://battrick.org/nl/about.asp">About</a></li>
					</ul>
				</li>    	<!-- etc. -->
				
			</ul>
			
			<div id="time" style="float:right;padding-right:5px;"><span title="17:01:26 on Wed 7th Sep 2011">17:01:26</span></div>
			
		</div><!-- menubar -->
	
	</div><!-- menubarwrapper -->

    <div id="page">
      
      <div id="leftmenu">
        <div class="menusect">
      		<div class="menutitle">Options</div>
      		<div class="menuhead"></div>
	  			
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=1" class="ajax">1. Introduction</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=2" class="ajax">2. Getting a Team</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=3" class="ajax">3. The Site</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=4" class="ajax">4. News</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=5" class="ajax">5. Preferences</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=6" class="ajax">6. Players</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=7" class="ajax">7. Backroom Staff</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=8" class="ajax">8. Youth Academy</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=9" class="ajax">9. Nets</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=10" class="ajax">10. Finance</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=11" class="ajax">11. The Ground</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=12" class="ajax">12. Fans &amp; Sponsors</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=13" class="ajax">13. Morale</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=14" class="ajax">14. Country Moves</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=15" class="ajax">15. Competitions</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=16" class="ajax">16. Match Orders</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=17" class="ajax">17. International Teams</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=18" class="ajax">18. Net Run Rate</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=19" class="ajax">19. Player Transfers</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=20" class="ajax">20. Personal Behaviour</a></div>
  
    <div class="menuitem">&nbsp;</div>
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=0">Entire rules</a></div>
    <div class="menuitem">&nbsp;</div>
    <div class="menuitem">Appendix:</div>
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=1000">Levels</a></div>
    
      		<div class="menufoot"></div>
      	</div>
      </div><!-- leftmenu -->
      
      <div id="rightcolumn">
        <div id="pagetitle">Battrick ยป Rules</div>
        <div id="boxtop"></div>
        <div id="boxmiddle">
          <div>
          
    <h3 id="levels" class="subheadernew">Levels</h3>
  
	<p>Here is a complete list of the denominations for all the skill 
levels that are used in Battrick. Remember that each level represents a 
range of ability, not an absolute.</p>
		
	<div class="menutitle">Player skills etc.</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">useless<br></div>
	
	<div class="menuitem">worthless<br></div>
	
	<div class="menuitem">abysmal<br></div>
	
	<div class="menuitem">woeful<br></div>
	
	<div class="menuitem">feeble<br></div>
	
	<div class="menuitem">mediocre<br></div>
	
	<div class="menuitem">competent<br></div>
	
	<div class="menuitem">respectable<br></div>
	
	<div class="menuitem">proficient<br></div>
	
	<div class="menuitem">strong<br></div>
	
	<div class="menuitem">superb<br></div>
	
	<div class="menuitem">quality<br></div>
	
	<div class="menuitem">remarkable<br></div>
	
	<div class="menuitem">wonderful<br></div>
	
	<div class="menuitem">exceptional<br></div>
	
	<div class="menuitem">sensational<br></div>
	
	<div class="menuitem">exquisite<br></div>
	
	<div class="menuitem">masterful<br></div>
	
	<div class="menuitem">miraculous<br></div>
	
	<div class="menuitem">phenomenal<br></div>
	
	<div class="menuitem">elite<br></div>
	
	<div class="menufoot"></div><br>
	
	<div class="menutitle">Members &amp; Supporters Confidence</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">desolate<br></div>
	
	<div class="menuitem">despairing<br></div>
	
	<div class="menuitem">pessimistic<br></div>
	
	<div class="menuitem">hopeful<br></div>
	
	<div class="menuitem">happy<br></div>
	
	<div class="menuitem">animated<br></div>
	
	<div class="menuitem">joyous<br></div>
	
	<div class="menuitem">ecstatic<br></div>
	
	<div class="menuitem">over the moon<br></div>
	
	<div class="menufoot"></div><br>
	
	<div class="menutitle">Fitness Levels</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">exhausted<br></div>
	
	<div class="menuitem">drained<br></div>
	
	<div class="menuitem">fatigued<br></div>
	
	<div class="menuitem">low<br></div>
	
	<div class="menuitem">fair<br></div>
	
	<div class="menuitem">moderate<br></div>
	
	<div class="menuitem">fresh<br></div>
	
	<div class="menuitem">lively<br></div>
	
	<div class="menuitem">invigorated<br></div>
	
	<div class="menuitem">energetic<br></div>
	
	<div class="menuitem">sublime<br></div>
	
	<div class="menufoot"></div><br>

	<div class="menutitle">Aggression</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">defensive<br></div>
	
	<div class="menuitem">cautious<br></div>
	
	<div class="menuitem">steady<br></div>
	
	<div class="menuitem">attacking<br></div>
	
	<div class="menuitem">destructive<br></div>
	
	<div class="menufoot"></div><br>

	<div class="menutitle">Form, Leadership &amp; Academy</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">useless<br></div>
	
	<div class="menuitem">worthless<br></div>
	
	<div class="menuitem">abysmal<br></div>
	
	<div class="menuitem">woeful<br></div>
	
	<div class="menuitem">feeble<br></div>
	
	<div class="menuitem">mediocre<br></div>
	
	<div class="menuitem">competent<br></div>
	
	<div class="menuitem">respectable<br></div>
	
	<div class="menuitem">proficient<br></div>
	
	<div class="menuitem">strong<br></div>
	
	<div class="menuitem">superb<br></div>
	
	<div class="menufoot"></div>

	<br><br>

          </div>
        </div>
        <div id="boxbottom"></div>
      </div><!-- righttcolumn -->

    </div><!-- page -->
    
    	<script type="text/javascript"><!--//--><![CDATA[//><!--
    	var scrarr = "crickileaks-1.gif", scrhref = "16";
    	//--><!]]></script>
    	<script type="text/javascript" src="levels_files/jquery.js"></script>
<script type="text/javascript" src="levels_files/menufloat.js"></script>
<script type="text/javascript" src="levels_files/clock_bgiframe_superfish.js"></script>

    <script type="text/javascript"><!--//--><![CDATA[//><!--
    timeDiff(new Date(2011,8,7,17,1,6));
	//--><!]]></script>
    <script type="text/javascript" src="levels_files/rules.js"></script>

  
</body></html>

Added doc/rules.asp.html.











































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
<!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" xml:lang="en"><head>
    <title>Battrick - Rules</title>
    
  <link rel="stylesheet" type="text/css" href="rules.asp_files/core.css">
  
    <!--[if lte IE 8]>
    
  <link rel="stylesheet" type="text/css" href="http://battrick.org/nl/ie.min.css?20100602230624" />
  
    <![endif]-->
    <meta http-equiv="content-language" content="en-gb">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <script type="text/javascript" src="rules.asp_files/bt.js"></script>

    <script type="text/javascript"><!--//--><![CDATA[//><!--
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-2057011-1']);
    _gaq.push(['_trackPageview']);
    (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
    })();
    //--><!]]></script><script src="rules.asp_files/ga.js" async="" type="text/javascript"></script>

  </head>
  <body id="rules">

    <div id="pagecontainer" style="margin: 0 auto;text-align: left;width:714px;">

    <div id="header">
		    <div id="banner">
			      	<div id="adrotator">
					  	
							<script type="text/javascript">google_ad_client="pub-1256369599706792";/* top banner, 468x60, created 8/26/08 */ google_ad_slot = "1766137636"; google_ad_width = 468; google_ad_height = 60;</script>
							<script type="text/javascript" src="rules.asp_files/show_ads.js"></script>
					    
				    </div>
			    
			    <div id="logo" style="text-align: center; margin: 0 2px 0 0;"><img src="rules.asp_files/logo_l.png" alt="Battrick" title="Battrick" width="250" height="71"><img src="rules.asp_files/logo_r.png" alt="" width="456" height="71"></div>
			    <div id="tickerbox"><script type="text/javascript">btDrawTicker();</script><div style="color: rgb(255, 246, 255);" id="ticker"><div class="ticker">WELCOME TO BATTRICK!</div></div></div>
			</div>
	  <script type="text/javascript" src="rules.asp_files/head.js"></script>

	  <script type="text/javascript">var serverClock = new Date(2011,8,7,17,1,20);</script>
	  <script type="text/javascript">
		  aTickerLines[0]="WELCOME TO BATTRICK!";
		  aTickerLines[1]="BATTRICK ... IT'S MORE THAN JUST A GAME...";
		  aTickerLines[2]="CRICKET HAS NEVER BEEN SO MUCH FUN";
	  </script>
	</div>
	</div>

  <div id="access"><a href="#page" title="Skip to content">Skip to content</a></div>
	<div id="menubarmarker"></div>
	<div style="position: relative;" id="menubarwrapper">
	
		<div id="menubar">
			<ul class="sf-js-enabled" id="topmenu">
				<li><a href="http://battrick.org/nl/news.asp">Main</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/news.asp" title="News about Battrick updates etc.">News</a></li>
						<li><a href="http://battrick.org/nl/prefs.asp" title="Set your site and game options">Preferences</a></li>
						<li><a href="http://battrick.org/nl/search.asp" title="Find players, clubs, matches and more">Search</a></li>
						<li><a href="http://battrick.org/nl/mail.asp" title="Check your BTmail">Mail</a></li>
						<li><a href="http://battrick.org/nl/btText.asp" title="Watch multiple live games at the same time">BT MultiView</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/public.asp?logoff=1" title="Log out of the game">Log Off</a></li>
					</ul>
				</li>
				<li><a href="http://battrick.org/nl/office.asp" title="Your club pavilion">Club</a>
					<ul style="display: none; visibility: hidden;">
						<li class="submenu"><a href="http://battrick.org/nl/office.asp" title="Your club pavilion">Pavilion</a>
						
							<ul style="display: none; visibility: hidden;">
							
								<li><a href="http://battrick.org/nl/leagues.asp?leagueID=5930">FC: VI.22</a></li>
							
								<li><a href="http://battrick.org/nl/leagues.asp?leagueID=1106">OD: IV.6</a></li>
								<li><a href="http://battrick.org/nl/leagues.asp?leagueID=8809">BT20: VI.1008</a></li>
							</ul>
						
						</li>
						<li class="submenu"><a href="http://battrick.org/nl/squad.asp" title="Your squad of players">Squad</a>
						
							<ul style="display: none; visibility: hidden;">
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998761">Clyde Baliram</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=1058026">Kavith Beebi</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=434802">Brad Bishop</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998763">Rory Braam</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998760">Sol Breedt</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=4015657">Mo-mo Briscoe</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998769">Eugene Butts</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=4045972">Douglas Childs</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998771">Chris Day</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998762">Dom Dliza</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998773">Elvis Graves</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998768">Lemar Hendriks</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=910990">Tom Holloway</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998759">Shevron Houghton</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998764">Neil Larkin</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998770">Desmond Lorde</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998772">Zatiah Lumsdon</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=350905">Wayne Perry</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998765">Leonard Shannon</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998766">Anton Stott</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=2771004">Gary Tandy</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=1080445">Gaz Theobald</a></li>
							
								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998767">Usman Urich</a></li>
							
							</ul>
						
						</li>
						<li><a href="http://battrick.org/nl/fixtures.asp" title="Details of upcoming matches and recent fixtures">Fixtures</a></li>
						<li><a href="http://battrick.org/nl/club.asp" title="Hire and fire backroom staff, general club info and access your youth academy">Club Info</a></li>
						<li><a href="http://battrick.org/nl/finances.asp" title="Check up on your weekly finances">Finances</a></li>
						<li><a href="http://battrick.org/nl/nets.asp" title="Assign your players to nets to train them up">Nets</a></li>
						<li><a href="http://battrick.org/nl/offers.asp" title="Offers made to and by you for players">Offers</a></li>
						<li><a href="http://battrick.org/nl/ground.asp" title="Expand your ground or change the pitch type">Ground</a></li>
						<li><a href="http://battrick.org/nl/challenges.asp" title="Accept or reject friendly game challenges">Challenges</a></li>
						<li><a href="http://battrick.org/nl/diary.asp" title="Your club's recent events">Diary</a></li>
					</ul>
				</li>
				<li><a href="http://battrick.org/nl/country.asp">Global</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/transfers.asp" title="Search for the players up for sale">Transfer Market</a></li>
						<li><a href="http://battrick.org/nl/country.asp">Country Details</a></li>
						<!--<li><a href="testSeries.asp">Test Matches</a></li>-->
						<li><a href="http://battrick.org/nl/odiSeries.asp">ODI Matches</a></li>
						<li><a href="http://battrick.org/nl/wc.asp">World Cup</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/emigrate.asp">Emigration</a></li>
					</ul>
				</li>
				<li><a href="http://battrick.org/nl/membership.asp">Membership</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/membership.asp" title="Find out what membership offers, and purchase membership for you or someone else">Details</a></li>
						
					</ul>
				</li>
				
				<li><a href="http://battrick.org/nl/sledge.asp">Community</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/sledge.asp">Sledging (Forums)</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/livechat.asp">Live Chat</a></li>
						<li><a href="http://battrick.org/nl/irc.asp">IRC Info</a></li>
						<li><a href="http://battrick.org/nl/logs.asp"><abbr title="Question and answer">Q&amp;A</abbr> Logs</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/blog.asp">Admin Blog</a></li>
						<li><a href="http://battrick.org/nl/focusgroup.asp">Focus Group</a></li>
						<li><a href="http://battrick.org/nl/bcc.asp">BT Cricket Council</a></li>
						<li><a href="http://battrick.org/nl/halloffame.asp">Hall of Fame</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/btshop.asp">Shop</a></li>
						<li><a href="http://battrick.org/nl/donations.asp" title="Donate to BT-Jargon">Donations</a></li>
						<!--<li><a href="competitions.asp">Competitions</a></li>-->
						<li><a href="http://battrick.org/nl/calendar.asp">Calendar</a></li>
						<li><a href="http://battrick.org/nl/online.asp">Online Users</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/commentary.asp">Commentary</a></li>
						<li><a href="http://battrick.org/nl/fantasy.asp">Fantasy WC</a></li>
						<li><a href="http://battrick.org/nl/cricketIRL.asp">Cricket Club Finder</a></li><!-- rename file to cricketclubs.asp -->
						<li><a href="http://battrick.org/nl/links.asp">Links</a></li>
					</ul>
				</li>
				
			    <li id="ie6sitemap"><a href="http://battrick.org/nl/sitemap.asp" title="Sitemap link for IE6 users">Sitemap</a></li>
				<li><a href="http://battrick.org/nl/rules.asp">Help</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/rules.asp">Rules</a></li>
						<li><a href="http://battrick.org/nl/newbyguide.asp">Beginners Guide</a></li>
						<li><a href="http://battrick.org/nl/faq.asp">FAQ</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/contact.asp">Contact Us</a></li>
						<li><a href="http://battrick.org/nl/adminteam.asp">Admin team</a></li>
						<li><a href="http://battrick.org/nl/privacy.asp">Privacy</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/sitemap.asp">Sitemap</a></li>
						<li><a href="http://battrick.org/nl/history.asp">History</a></li>
						<li><a href="http://battrick.org/nl/about.asp">About</a></li>
					</ul>
				</li>    	<!-- etc. -->
				
			</ul>
			
			<div id="time" style="float:right;padding-right:5px;"><span title="17:01:31 on Wed 7th Sep 2011">17:01:31</span></div>
			
		</div><!-- menubar -->
	
	</div><!-- menubarwrapper -->

    <div id="page">
      
      <div id="leftmenu">
        <div class="menusect">
      		<div class="menutitle">Options</div>
      		<div class="menuhead"></div>
	  			
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=1" class="ajax">1. Introduction</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=2" class="ajax">2. Getting a Team</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=3" class="ajax">3. The Site</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=4" class="ajax">4. News</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=5" class="ajax">5. Preferences</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=6" class="ajax">6. Players</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=7" class="ajax">7. Backroom Staff</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=8" class="ajax">8. Youth Academy</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=9" class="ajax">9. Nets</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=10" class="ajax">10. Finance</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=11" class="ajax">11. The Ground</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=12" class="ajax">12. Fans &amp; Sponsors</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=13" class="ajax">13. Morale</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=14" class="ajax">14. Country Moves</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=15" class="ajax">15. Competitions</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=16" class="ajax">16. Match Orders</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=17" class="ajax">17. International Teams</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=18" class="ajax">18. Net Run Rate</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=19" class="ajax">19. Player Transfers</a></div>
  
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=20" class="ajax">20. Personal Behaviour</a></div>
  
    <div class="menuitem">&nbsp;</div>
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=0">Entire rules</a></div>
    <div class="menuitem">&nbsp;</div>
    <div class="menuitem">Appendix:</div>
    <div class="menuitem"><a href="http://battrick.org/nl/rules.asp?item=1000">Levels</a></div>
    
      		<div class="menufoot"></div>
      	</div>
      </div><!-- leftmenu -->
      
      <div id="rightcolumn">
        <div id="pagetitle">Battrick ยป Rules</div>
        <div id="boxtop"></div>
        <div id="boxmiddle">
          <div>
          
    <h3 id="introduction" class="subheadernew">1. Introduction</h3>
   Battrick is a free online cricket management game in which you 
compete against teams managed by other users from all over the world. 
You have complete control over your club, from ground preparation to 
team selection, from finances to coaching, and from buying and selling 
players to hiring and firing backroom staff.<br>
<br>
With trials and tribulations lying ahead in one day league, first class 
league and cup competitions, can you make your club the best there is?<br>
<br>
Please take the time to read the following guide; it will help you get a firm grounding in the ways of Battrick.<br>
<br>
<em>Special thanks go to <a href="http://battrick.org/nl/office.asp?userID=346">Brylarke</a> for his assistance with the refinement of this guide.</em> 
			<br><br>
			
    <h3 id="gettingateam" class="subheadernew">2. Getting a Team</h3>
    The application process is fairly quick and simple. Simply follow 
the link on the home page and fill in the details as required.<br>
<br>
We do ask for your honesty in the application though: <ul><li>You must 
use your real name and give a valid email account, as this is where your
 team details will be sent and how we may need to contact you from time 
to time, for instance if you are unable to login to your account for any
 reason.  For security and privacy reasons, users should only sign up 
with a private and secure email address, shared email addresses are not 
allowed.</li><li>You are only allowed one team, so any duplicate applications will be deleted.</li><li>Any application that is clearly not serious will also be deleted.</li><li>Applications must not contain user names or team names that can be deemed offensive.</li><li>If you do not log into your team for 7 weeks your account will be deleted and you will not be able to access your team</li></ul>
If you will be accessing your team from a computer used by a fellow 
Battrick user then please contact us, naming your application and <i>all</i>
 individuals involved. If you are already playing Battrick and someone 
will be signing up from your computer then please use the in-game 
Contact Us form to let us know their name and e-mail address, so that we
 can look out for their application. While you are most welcome to play 
Battrick in those situations, any transfers between these teams and your
 own will be in breach of the rules and severely punished.<br>
<br>
Teams are almost always available for you to take over immediately, 
although there may be rare occasions when the leagues are completely 
full.  In this case you will be added to a waiting list and allocated a 
team when the league is most probably expanded at the end of the season.<br>
<br>
When you take over a side, the only thing that you will inherit will be 
its league position. All the old players are cleared out and you are 
given a new squad, existing debts and credits are cleared and a starting
 balance is put into your account, and the team will be renamed as you 
requested.<br>
<br>
Only teams in the lowest 2 divisions of both the FC and OD league 
pyramids are allocated to new users, so there will be some work for you 
to do to climb through the ranks!<br>
<br>
We also ask you to read the <a href="http://battrick.org/nl/rules.asp?item=20">Personal Behaviour</a> section of the Rules before you begin playing the game.
			<br><br>
			
    <h3 id="thesite" class="subheadernew">3. The Site</h3>
    Battrick is pretty self explanatory as to finding your way about. 
There are a series of drop down menus at the top of the site that will 
get you to most of the pages that you need to get to, and the links from
 these pages will take you everywhere else. Some of these pages are 
discussed in more detail below, but the best way to learn the basics is 
to simply explore and familiarise yourself with all the pages.<br>
<br>
You can also get answers to many of your questions on the <a href="http://battrick.org/nl/sledge.asp?confID=52&amp;wv=5">Newbie Sledging Board</a>.
			<br><br>
			
    <h3 id="news" class="subheadernew">4. News</h3>
  This is the first page that you will see every time you log in to 
Battrick. Here you can see general news about game developments, 
announcements and anything else that the Battrick team want to let you 
know about. You should check the news fairly frequently to make sure you
 don't miss anything important, particularly when you believe you have 
just discovered an issue!<br>
<br>
Also here is a link to your own news section, where you will be notified
 of such things as being outbid on players, fans leaving or joining your
 club and sometimes messages from the admin staff.
			<br><br>
			
    <h3 id="preferences" class="subheadernew">5. Preferences</h3>
    This is where you can change your user information. It is highly 
recommended that you visit this page immediately after first logging in 
to change your password to something you are more likely to remember!  
You can also edit your user name (in Week 1 only) and e-mail address 
here, and specify a homepage (a link to which will appear on your 
Pavilion page).<br>
Additionally you can also control how some of the site will appear to you by editing these options:<ul><li><b>Use Floating Menu</b>
 - This allows you to turn off and on the feature where the menu will 
stick to the top of your browser screen when you scroll down a long 
page.</li><li><b>Show Enhanced Menu Items</b> - This feature, when 
enabled, shows a tertiary menu on certain menu items that adds quicker 
linking to certain areas, eg Squad leads to all your players being 
linked from the menu.</li></ul>
<br>
Users who have signed up to our <a href="http://battrick.org/nl/membership.asp">Membership</a> program also have some of their options here:<ul><li><b>Logo</b>
 - This is where you enter the web address (URL) of the image you would 
like displayed on your Pavillion page.  The graphic will need to be 
hosted on the internet for you to do this; there are many websites 
offering free image hosting, <a href="http://photobucket.com/" target="_new">Photobucket</a> being an example. If your host is being reported as a <em>malware</em>
 site, we will ask you to find a different host for the same image. 
Large logos will automatically be scaled down on your team page.</li>
Please note that offensive logos are not allowed and users can be banned from the game for displaying such an image.<li><b>Gravatar E-mail Address</b>
 - An avatar is an icon used to to identify an individual.  Gravatar is a
 system which allows you to easily use one single image on many sites 
without the hassle of setting it up each time, and BT is one of them!</li>
Simply register on the <a href="http://www.gravatar.com/" target="_new">Gravatar</a>
 site, follow the approval process and then enter your registered e-mail
 in the box on the preferences page.  Your Gravatar will now appear 
alongside your user name in posts made in other people's guestbooks.<li><b>Player Faces</b>
 - Each player in Battrick is an individual. Members can view the faces 
of any player in Battrick, and have their player's faces displayed on 
the squad page. If you have very ugly players, or for any other reason, 
you can turn off player faces using this option.</li><li><b>Status Box</b>
 - On the news page, a box on the left gives you info on the number of 
people on line, and the latest Twitter and Admin blog posts. Unchecking 
this option ensures that box is not shown.</li><li><b>National/U19s box</b>
 - On the news page, a box on the left gives you the latest news and 
press releases from your national and U19 sides. There are also links to
 the last completed match, and if the link is bold, the link is to a 
match currently in progress! If your national side is not of interest to
 you, and you don't want the box, you can toggle it on/off from here. 
When enabled, you can choose which country's news you want to view.</li><li><b>Latest Events</b> - Your way of knowing which of the daily or weekly updates has been processed recently. Unchecking the option hides this box.</li><li><b>Sledging Link Icons</b> - Enabling this adds small icons to most ofthe link types on the forums, allowing them to be easily distinguished.</li><li><b>Coloured Fixtures.</b> - Colour-codes the fixture results.</li><li><b>Online Status Indicators</b>
 - If you have this enabled, then small green dots appear next to 
usernames in some places, to indicate that the user has been active 
within the last ten minutes.</li><li><b>Show your online status to others</b> - The <a href="http://battrick.org/nl/online.asp">online list</a>
 shows you every player currently logged into Battrick, so you can see 
who is about. It's sortable by country, and you can see which country 
has the most players logged in, The link to this is available from the 
front page. The online list is a excellent place to find people to 
challenge for friendly matches. As some users prefer to not be seen to 
be online, members have the option of hiding from this list. When 
disabled, the online status indicator will also not appear to others for
 you.</li><li><b>Own Squad Sorting Order</b> - Although many members 
order their squad via the use of shirt numbers, others want to order by 
something a bit more, like fitness or form. With the Primary and 
Secondary dropdowns, members can choose what is the default order when 
viewing their own squads.</li></ul>

			<br><br>
			
    <h3 id="players" class="subheadernew">6. Players</h3>
          Clearly your club's most important asset, you must have a 
minimum of fourteen (14) players in your squad at all times. Each player
 has seven main skills that determine their ability. They are:<br>
<br>
<b>Stamina</b> - A players stamina is arguably his most important 
attribute. As a game goes on, players will tire. No matter how high his 
stamina skill, he will experience some reduction in his performance, but
 the extent to which his tiring is going to affect his performance will 
depend totally on his stamina. The higher the players stamina, the lower
 the tiring effect.<br>
<br>
Not only does stamina have an effect on a players performance during a 
game, but also his recovery off the pitch.  Players with higher levels 
of stamina will be able to carry more workload before their Personal 
Fitness Level (PFL - discussed further on) drops, and their PFL will 
also recover quicker.<br>
<br>
There is a limit to how high a players stamina can be though. Once he 
reaches the maximum level of stamina (superb*), no matter how hard he 
trains at his fitness, it will never go higher. There are limits to 
human performance!<br>
<br>
<b>Batting</b> - Important for all players that are going to bat. This is the primary skill for determining a batsman's overall skill.<br>
<br>
<b>Bowling</b> - Important for all players that are going to bowl. This is the primary skill for determining a bowler's overall skill.<br>
<br>
<b>Wicket Keeping</b> - This skill is important for wicket keepers only.
 It will help to have a good wicket keeper as he will tend to hold on to
 a lot of chances for catches and make more stumpings. He will also be 
responsible for keeping byes and leg-byes down to a minimum.  It is not 
the only skill that decides how well a player performs behind the stumps
 however.<br>
<br>
<b>Concentration</b> - This is an important skill for batsmen. The 
importance of this will be larger for First Class games than for one day
 games, although it is valuable in both forms of the game. A batsman may
 be very well endowed in batting skill, but if he can't concentrate then
 he is likely to make a silly mistake and get out earlier than he would 
have otherwise. It also has an effect on an individual's fielding and 
wicketkeeping ability; you need to stay alert in the field or risk 
missing that chance for a catch!<br>
<br>
<b>Consistency</b> - This is an important skill for bowlers. The 
importance of this is larger for First Class games than for one day 
games, although it is valuable in both forms of the game. A bowler may 
have a great amount of bowling skill, but if he can't consistently put 
the ball in the same areas then he is likely to find himself 
disappearing to all areas of the park more often than he otherwise 
would. It also has an effect on a player's ability to field and keep 
wicket; the more consistent the individual, the more likely they are to 
hold their catches and save runs.<br>
<br>
<b>Fielding</b> - Important for all your players. They do say that 
catches win matches, and if your team's fielding is not up to scratch, 
then you will not catch those catches. It also has a small effect on a 
player WK ability. As has been mentioned above however, this is not the 
lone skill in determining a players fielding ability. <br>
<br>
All of these abilities can be improved by giving your player individual 
training. As in real life, generally you will see your younger players 
improving their skills faster than older ones, although there are two 
exceptions (concentration and consistency). Read the <a href="http://battrick.org/nl/rules.asp?item=9">Nets</a> section to find out more about this.<br>
<br>
There are also other aspects to your players that you need to pay attention to:<br>
<br>
<b>Preferences and Traits</b> - In addition to the main skills that all 
players have, some players have special abilities that set them apart 
from the rest. A full list of these preferences and traits can be found 
in <a href="http://battrick.org/nl/blog.asp?startNo=12">this blog post</a>.<br>
<br>
<b>Age</b> - As a player gets older he finds it more and more difficult 
to improve in the physical skills, although their increased maturity 
does aid them in improving their psychological skills (concentration and
 consistency).<br>
<br>
Players all age on the same day, at the very start of the new season before the first training session.<br>
<br>
Ultimately a veteran player will struggle to maintain his physical 
performance and you will see his stamina fall away. However, while youth
 can be a blessing, age does bring...<br>
<br>
<b>Experience</b> - An inexperienced player will not know what to do in 
certain situations (eg hog the strike with a better batsman left at the 
other end) and may well make stupid mistakes that a more seasoned player
 would not.  An experienced captain is a particularly valuable 
commodity.<br>
<br>
<b>Aggression</b> - This gives an indication of what is the player's 
natural approach to playing. The more aggressive a player, the more 
likely he is to score runs quickly as a batsman, but he will be more 
likely to get out. For a bowler, he is more likely to get wickets, but 
also more likely to be expensive. This can be tempered by individual 
orders though.<br>
<br>
<b>Leadership</b> - An important skill for your captain only. He will 
have various decisions to make throughout a game, and may have to lift a
 depressed side when things are not going well. This combined with his 
experience will determine how effective he is as a captain. The highest 
level of leadership a player can possess is superb.<br>
<br>
<b>Form</b> - A sad fact of life is that players go in and out of form. 
The same is true in Battrick. However you can help a player's chance of 
improving or maintaining their form in two ways.<br>
<br>
Firstly an individual playing regularly will have a better chance of 
staying in touch than a player who merely carries the drinks and lose 
the feel of being out in the middle.  Equally a player who is receiving 
coaching in a net session has a better chance of increasing his form. A 
player's form has a significant impact on his performance. You may be 
better off picking a worse batsman who is in better form than your star 
player who is in worse form.<br>
<br>
Form is split into Batting and Bowling to show how a player's form can 
fluctuate in each discipline.  A player's wicket keeping ability is 
affected by his bowling form.<br>
<br>
<b>Personnel Fitness Level (PFL)</b> - While there are no injuries in BT
 per se, you cannot continually play an individual non-stop without him 
feeling some effects on his body.  An individual's PFL has a major 
effect on his performance and is lost during his exertions both on and 
off the field.<br>
<br>
Factors involved in a player's loss of PFL are:<br>
<ul><li>The amount of matches a player plays, and their type. FC Games, 
due to their length, will have the largest effect, while friendlies have
 no effect.</li><li>The player's level of involvement in a game; a 
player who bowls a large number of overs and/or plays a long innings 
will use more of their fitness reserves than his team-mate who loses his
 wicket cheaply and fields without bowling.</li><li>The number of net sessions a player is receiving and their intensity.</li></ul>The
 players recovery of PFL is governed by their level of stamina. Age is 
not currently a factor in a players PFL recovery and there are no 
immediate plans to make it one.  PFL is updated daily at the, aptly 
named, daily updates.
<br>
At the lowest levels of PFL a player will be barely able to perform.
			<br><br>
			
    <h3 id="backroomstaff" class="subheadernew">7. Backroom Staff</h3>
             In your club info, you can find details of all your 
backroom staff. You are able to hire or fire these staff at your 
discretion from here. Before you do though, it may be useful to 
understand what each one will do for you.<br>
<br>
<div class="ss"><br>
<img src="rules.asp_files/backroomstaff.gif" alt="Image showing list of backroom staff" width="280" height="225"><br>
<span>An example of hired backroom staff from the Club Info page.</span><br>
</div><br>
<br>
The following are involved in improving the physical attributes and 
technical skills of your players (Stamina, Batting, Bowling, Keeping and
 Fielding).  You can read more on how training is organised in the <a href="http://battrick.org/nl/rules.asp?item=9">Nets</a> section.<br>
<br>
<b>Bowling Coaches</b> are specialist coaches for bowlers. Each bowling coach will provide you with one bowling training spot for the week.<br>
<br>
<b>Batting Coaches</b> are specialist coaches for batsmen. Each batting coach will provide you with one batting training spot for the week.<br>
<br>
<b>Fielding Coaches</b> are specialist coaches for fielding. Each fielding coach will provide you with one fielding training spot for the week.<br>
<br>
<b>Keeping Coaches</b> are specialist coaches for wicket keepers. Each keeping coach will provide you with one keeping training spot for the week.<br>
<br>
<b>Stamina Coaches</b> are specialist coaches for all player's stamina. 
Each stamina coach will provide you with one stamina training spot for 
the week.<br>
<br>
There is no limit as to how many of each of these coaches you can hire, but there is a limit as to their effectiveness.<br>
<br>
<div class="ss"><br>
<img src="rules.asp_files/managestaff.gif" alt="Image showing a section of the Club Info page where you can hre and fire staff" width="192" height="185"><br>
<span>From the Club Info page, you can hire and fire all of the different types of backroom staff.</span><br>
</div><br>
<br>
As there are only 10 training spots available each week it would be 
pointless to hire more than a total of 10 of the five types of coaches 
listed above. If you do you are only able to use the first 10 hired, the
 remainder merely sitting around to collect their wages!<br>
<br>
Generally coaches  with be as effective as each other, but there is a 
situation where this isn't the case.  Again you can read about this in 
the <a href="http://battrick.org/nl/rules.asp?item=9">Nets</a> section.<br>
<br>
The other types of staff you can recruit are as follows:<br>
<br>
<b>Sports Psychologists</b> - multipurpose specialists. They will help 
with your teams morale, keeping it up even when you are losing. They are
 also used in conjunction with the bowling, batting, wicket keeping and 
fielding coaches to help improve the concentration and consistency of 
your players being trained.<br>
<br>
Every sports psychologist you hire attends every net where a player can 
receive training in concentration and/or consistency. For more details 
see the <a href="http://battrick.org/nl/rules.asp?item=9">Nets</a> section<br>
<br>
<b>PR Officers</b> - these chaps (and chapesses) are the voice of your 
club. They will woo the sponsors and help keep your club high profile, 
all with the intention of improving the mood of your sponsors, simply so
 that they give you more money.<br>
<br>
<b>Financial Advisers</b> - they can help you with the management of 
your club finances. If you are in debt, they can help arrange a lower 
interest rate. Similarly, if you have money in the bank, Financial 
Advisers will invest it wisely (and safely!) and you will receive 
interest.<br>
<br>
For these staff members, the more you hire, the less effective the 
additional staff will be. (ie the second coach hired will not add as 
much benefit as the first, nor the third as much as the second, and so 
on.)<br>
<br>
In terms of cost, coaches will collect a salary of ยฃ2,500 each per week,
 whilst the others will only ask for ยฃ1,500 each per week.<br>
<br>
Finally, if you decide you have too many of any of these fellows around,
 then you are free to terminate their contract, although you will have 
to give them a redundancy payment to the value of a weeks wages.<br>
<br>
However when in debt, the bank will allow you to fire coaches as they 
see this as down-sizing your company thus saving money in the long-term.
  But they will not allow you to hire any coaches even if you will be in
 credit after the next financial update.  They do not take current sales
 into consideration.  If you do try to hire coaches during these times 
then there will be a diary entry, but they will not arrive nor will you 
be charged the  ยฃ1,500 or ยฃ2,500.
			<br><br>
			
    <h3 id="youthacademy" class="subheadernew">8. Youth Academy</h3>
    Your club, being the responsible community centre that it is, runs a
 youth academy where it will give schooling to promising local young 
cricketers.<br>
<br>
The condition of this building will need some looking after, and will 
deteriorate over time. You can make repairs to bring the standard back 
up again. The maximum condition that the building can be is superb. 
Everyone's academy will deteriorate at the same rate and at a constant 
amount each week. There is nothing that you can do to help stop that, 
apart from keeping an eye on it and making sure that repairs are carried
 out when required.<br>
<br>
To order the repairs, go to Club -&gt; Club Info and on the lower right 
hand side of the page is a "Order Repairs" button.  One upgrade will 
cost ยฃ30,000 and will upgrade the Academy building by one full level. 
(ie: Legend is: Proficient = 8, Strong = 9, Superb = 10; Current Academy
 at 8, one repair 9, second repair 10)<br>
<br>
On top of this each week, you can invest in Intensive Training Sessions 
(ITS). For every ยฃ2,000 that you invest into the academy in this way (up
 to a limit of ยฃ20,000 per week, earning you 10 sessions), you will 
receive an additional intensive training session. This investment will 
have no impact on the quality of your youth academy building.  You can 
change the level of ITS investment on your Club Info page.<br>
<br>
Your weeks investment to ITS will show up in your club page after each 
economic update. You will then, at a point of your choosing, be able to 
allocate these sessions to your new youth academy player.  The player 
already possess a degree of natural talent, but the level and 
distribution of this is completely random and will remain a mystery to 
you until the ITS and promotion process is completed.  You can store up 
to a maximum of 100 ITS.  Any subsequent payments will not be taken from
 your finances until you are under the 100 limit.<br>
<br>
The total sessions that you can use on one player is limited by the 
condition of the Youth Academy building and the age of the player. You 
can allocate these sessions in any way that you want, but you cannot 
assign any more than 12 sessions to one skill. After you are happy with 
the session allocation you can promote the player to the senior squad. 
As he joins your squad, you will see the benefits of the intensive 
training sessions as well as his initial natural talent, making up his 
overall skills. This does sound complicated, but the Youth Academy page 
will make it very straightforward for you.
			<br><br>
			
    <h3 id="nets" class="subheadernew">9. Nets</h3>
    <h3>Specialists</h3><br>
We recognise that you as the team owner are more au fait with the 
tactical and business side of the game, so we have given you the 
opportunity to hire specialist coaches to help you to improve your 
player's skills. There are five different types of specialist coaches 
that you can hire: bowling, batting, fielding, wicket keeping and 
stamina coaches. All of these coaches can be hired from within the Club 
Info page. (You can read more about them individually in the Backroom 
Staff section)<br>
<br>
Once you have hired at least one specialist coach, you can start to 
allocate a player to each of these coaches for the week within the nets 
area. Each coach will add one more available coaching session, the 
benefits of which are seen after Saturday's weekly training update. (See
 Global &gt; Country Details &gt; League Dates for the exact time in 
your league)<br>
<br>
There are some limitations though. Due to the limited time and space 
available, you can only have 10 coaching sessions each week. If you have
 more specialist coaches than that, then you are simply paying them to 
sit around each week. Even if you could allocate a player to them, he 
would never get the chance to train as the net space would never be 
available.<br>
<br>
<div class="ss"><br>
<img src="rules.asp_files/trainingsessions.gif" alt="Image showing ten training sessions" width="386" height="323"><br>
<span>An example of using ten training sessions from the "Nets" page.</span><br>
</div><br>
<h3>Multiple Nets</h3><br>
Secondly, although each player can be allocated to more than one 
specialist coach, the effectiveness of the sessions will reduce with 
every duplication.<br>
<br>
For example, if you allocate Botham to two batting sessions, he will get
 the full benefit from the first session, but due to the amount of work 
he has already done in that session, the amount he can possibly gain 
from the second session is much less. If he was allocated to a third 
batting session, he would receive again even less training. A fourth 
training session would only provide negligible benefit.<br>
<br>
However, if Botham was told to also go to a bowling session as well as 
the batting ones, he would still get the full benefit from the first 
bowling session. Again, any subsequent sessions would also see a 
reduction in training received.<br>
<br>
<h3>Fitness</h3><br>
As the days pass, the fitness of your players will rise during each 
daily update at a rate depending on their stamina. If you train too hard
 it will tire the player rather than improve his fitness.<br>
<br>
Playing in a match will also have a detrimental effect on his fitness, 
although club friendlies will have no impact. If he bowls lots of overs,
 his fitness would drop more than if he had not batted and only appeared
 in the field. Also if a player gets to 100 runs his fitness after the 
game will have dropped by more than a player who got a duck. A player's 
fitness level will have a significant effect on his performance, so you 
will have to judge when to rest players and when to play them.  Giving a
 player too many net sessions will cause him to be tired for a couple of
 days after nets and may not recover in time for matches.<br>
<br>
<h3>Secondary Skills</h3><br>
There is also another kind of specialist that you can get some benefit 
from; sports psychologists. While employing these specialists will help 
your team with any morale issues you may be experiencing, they can also 
help your players with the more mental skills: concentration and 
consistency. Your psychologists will attend all but the stamina coaching
 sessions, and will be passing on helpful hints to the players while 
they are being coached. The more psychologists you have, the more advice
 can be dished out, although the law of diminishing returns does apply 
here too with each additional psychologist providing fewer words of 
wisdom than the one before.<br>
<br>
Sports psychologists will only attend the first net of a type per player
 per day. So your bowling trainee with 3 bowling nets only sees the 
sports psychologists in the first net and the sports psychologists are 
not available to him in the subsequent bowling nets. If he had a 
fielding net as well, they would also attend that session. All 
psychologists will attend each net for which any would qualify, so have 
10 different players being trained one session of batting each and all 
psychologists will attend all 10 sessions.<br>
<br>
<h3>Form</h3><br>
Finally, form. All players that are trained by specialists are more 
likely to see a rise in their form that week, as are the players who 
play in a match, regardless of whether they actually bowl or bat, so be 
careful about leaving too many players just sitting on the side lines!<br>
<br>
<h3>Training Rate</h3><br>
Finally, note that younger players, being hungrier and keen to learn, 
will train their technical skills quicker - whilst older players (being 
more mature) will be able to improve their concentration and consistency
 quicker.<br>
<br>
Stamina increases at the same rate, whatever the age.
			<br><br>
			
    <h3 id="finance" class="subheadernew">10. Finance</h3>
           The finance page lets you keep track of how you are spending and making money each week.<br>
<br>
Each week, there is a financial update where the monies owed to you, and
 the monies that you are due to pay, are credited to and debited from 
your account. The balance shown at the top is how much money you had in 
the bank immediately after the last financial update, while the figure 
in brackets is the amount of money you will have in your account after 
the next financial update if you make no more transactions before then.<br>
<br>
All transactions that take place during the week are added to the 
profit/loss account shown and the balance figure in brackets is updated 
accordingly.<br>
<br>
This is what each of the areas of the profit/loss sheet contain:<br>
<br>
<b>Income from Gate Receipts</b> - Any income due from matches played during the week. See the Ground section for details of how this is calculated.<br>
<br>
<b>Income from Sponsors</b> - This amount will depend on how good your 
relations with your sponsors are, your position within the league, and 
how high your league is.<br>
<br>
<b>Income from Interest</b> - If you have money in the bank at the last 
financial update, and you have hired a financial advisor, you can earn 
interest. You can increase the rate of interest by hiring more financial
 advisors. There is a maximum of 80 000 per week that you can receive in
 interest.<br>
<br>
<b>Income from Miscellaneous</b> - Simply contains everything else that you can gain money from such as sales of players (less 5% sales tax) and prize money.  <br>
<br>
<b>Costs for Ground Maintenance</b> - Although your groundsman will only
 take a small salary, he will have costs for the week and not only in 
the preparation of the wicket, but to maintain the spectator areas. 
Details of spectator area costs are given in the ground section.<br>
<br>
<b>Costs for Salaries</b> - All your players and backroom staff need to be paid, and this is where that cost will show.<br>
<br>
<b>Costs for Interest</b> - Like with good interest, if you had an 
overdraft at the last financial update, then you will have to pay 
interest on that money. Any financial advisors may be able to help get a
 better rate though.<br>
<br>
<b>Costs for Youth Academy</b> - Showing the level of investment into your youth academy.<br>
<br>
<b>Costs for Miscellaneous</b> - Any other costs that incurred during 
the week show up here, including firing backroom staff, promoting from 
the academy and buying players.<br>
<br>
<b>Overdraft and Bankruptcy</b><br>
The bank will give you an overdraft facility up to ยฃ350,000.  If you 
exceed that level at the time of your countries weekly financial update 
then the Bank will give you two weeks and unlimited logins to get back 
below the threshold.  The bank will only reconsider your debt once a 
week during the financial updates, so you must ensure that during either
 of the updates your balance is at the required level.<br>
<br>
If you are still in debt after both weeks your account will be locked, 
your team declared bankrupt and you lose your team. If you are 
financially stable after either financial update your bankruptcy warning
 will disappear.  So be very, very careful with debt.<br>
<br>
If you lose your team you will have to wait until it becomes a bot, after seven weeks, before you can apply for a new team.<br>
<br>
<b>Members please note: </b>Battrick Membership does not protect you 
from bankruptcy. Should a Member go bankrupt and fail to bring their 
team out of debt before the time limit then their team will remain 
locked until it becomes a bot, as with any other user. Should this 
happen then you will lose your team like anyone else.<br>
<br>
Although there is the large overdraft facility available, you can only 
use the first ยฃ150,000 to buy players with. Once below that level, you 
will not be allowed to buy players. When determining your balance for 
this purpose, the bank will be looking not only at the state your 
balance will be in come the next finance update; they will also take 
into account any players that you currently have bids on and/or players 
that you are selling and have received offers for.
			<br><br>
			
    <h3 id="theground" class="subheadernew">11. The Ground</h3>
    Your pride and joy, this is where all the action takes place. There 
are 2 aspects to the ground that you need to pay particular attention 
to: The playing surface and spectator facilities.<br>
<br>
You have a groundsman that will prepare the playing surface for you. He 
costs you ยฃ250 per week. All you have to do is tell him what sort of 
pitch you would like to have prepared for the next match. The time it 
will take for this change to take place will depend on the extent of the
 change you've requested.<br>
<br>
<div class="ss"><br>
<img src="rules.asp_files/pitchoptions.gif" alt="Image showing the Pitch Options feature" width="302" height="68"><br>
<span>The Pitch Options feature from the Ground page.</span><br>
</div><br>
<br>
There are 7 different types of pitch surface that he can prepare for you
 with each pitch condition favouring a different sort of player:<br>
<br>
<table><tbody><tr><td><b>Pitch Type</b></td><td><b>Favoured</b></td></tr><tr><td>Uneven</td><td>Seam Bowlers</td></tr><tr><td>Cracked</td><td>Seam Bowlers</td></tr><tr><td>Hard and Fast</td><td>Batsmen</td></tr><tr><td>Green</td><td>Seam Bowlers</td></tr><tr><td>Flat</td><td>Batsmen</td></tr><tr><td>Dusty</td><td>Spin Bowlers</td></tr><tr><td>Slow</td><td>All Bowlers</td></tr></tbody></table><br>
<br>
Please note that, while some pitches may appear to behave similarly, some do have more effect or greater leanings than others!<br>
<br>
On the spectator side, you start off with a ground that can hold 6,500 
spectators. There are four types of viewing areas that you can have at 
the ground. Each will cost a different amount to maintain, a different 
amount to build, and also command a different ticket price for the 
public to use. As such, each type of seat will attract a different type 
of punter, and in differing quantities. The details of all this are 
shown in the table below. All amounts shown are in ยฃ and are per seat or
 space.<br>
<br>
<table><thead><tr><th width="125">Type</th><th width="125">Building Cost</th><th width="125">Maintenance Cost</th><th width="125">Income</th></tr></thead><tbody><tr><td>Standing Room</td><td>15.00</td><td>1.00</td><td>5.00</td></tr><tr><td>Uncovered Seats</td><td>25.00</td><td>1.60</td><td>7.50</td></tr><tr><td>Covered Seats</td><td>30.00</td><td>2.20</td><td>10.00</td></tr><tr><td>Members Seats</td><td>100.00</td><td>5.00</td><td>25.00</td></tr></tbody></table><br>
<br>
When building new places, there is also a fixed cost of ยฃ20,000 that 
will be charged irrespective of how much work is being done.  You can 
get a quote for any development without committing to anything unless 
you accept an offer. Entering negative values enables you to get a quote
 for demolishing seats.<br>
<br>
<div class="ss"><br>
<img src="rules.asp_files/expandground.gif" alt="Image showing the Expand Ground feature" width="193" height="362"><br>
<span>Entering additional seating values in the Expand Ground feature on
 the Ground page feature does not commit you to the order at this point.</span><br>
</div><br>
<br>
<b>Gate Receipts</b><br>
When a match has finished, you will be able to see how many people came 
to watch. The proceeds from the gates will be paid out depending on what
 type of match was being played. In a league match (both FC and OD), the
 home team will receive the full amount. In cup, BT20 and friendly games
 the receipts are split 50/50.  There are no gate receipts for either 
team in OD play-off matches.<br>
<br>
First Class matches have Match Ticket sales and daily sales. A large 
number of your fans love the game so much that they are happy to pay for
 three days regardless of how long the game goes and won't care about a 
refund if the game finishes early. You'll receive the Match Ticket sales
 on day one of the FC match, much lower daily sales on subsequent days 
of play.<br>
<br>
All these options can be found at your Ground page.
			<br><br>
			
    <h3 id="fanssponsors" class="subheadernew">12. Fans &amp; Sponsors</h3>
    These are two important aspects of the game that will have a large 
bearing on how successful your club is financially, as the majority of 
your income will come from either your sponsors or gate receipts. You 
can follow their mood in the finance page.<br>
<br>
Fans are particularly fickle. If you are winning games they are happy, 
but if you are losing, then their mood can quickly change for the worse.
 When success is in the air more people will be willing to part with 
their cash to bask in your hard earned success, while on the flipside 
pretty much only the diehard fans will turn out for games if you are on a
 poor run.<br>
<br>
These fans are your club members, who have paid up as a show of loyalty 
to your club and will turn out to support you through thick and thin. 
The amount of club members you have is a good indicator as to how many 
supporters you are likely to see turning up to your matches. But even 
these members will come and go depending on your successes in the 
middle.<br>
<br>
<div class="ss"><br>
<img src="rules.asp_files/sponsorsclubmembers.gif" alt="Image showing the number of Sponsors' and their confidence" width="271" height="64"><br>
<span>The Sponsors' and Members' confidence on the Club Info page can often change.</span><br>
</div><br>
<br>
Sponsors are more concerned with the image of the club. This has more to
 do with how good a job your PR officers and how high up the league 
structure your club is. Keep the sponsors happy, and the money will keep
 coming in.
			<br><br>
			
    <h3 id="morale" class="subheadernew">13. Morale</h3>
    Morale will have an effect on your teams performance. You can change
 this by winning and losing matches; win and it goes up, lose and it 
goes down.  <br>
<br>
You can also hire Sport Psychologists who will also have an impact on 
morale.  They will try and keep morale up when losing and keep morale in
 check when your team is surpassing your greatest expectations.
			<br><br>
			
    <h3 id="countrymoves" class="subheadernew">14. Country Moves</h3>
      <div class="notification faq"><strong>Will I be able to move my team between countries?</strong><br>
Yes.</div><br>
<br>
Any team can move at end of season to bottom division in a new country 
to be replaced by bot in the current position. The ability to move is 
based on <a href="http://battrick.org/nl/emigrate.asp">application</a> 
which can be made at the end of the season, opening on Monday Week 16 
and closing on Monday Week 1 of the next season. At the close of the 
application period, all teams applying to move will be checked that they
 can afford the move and will be moved in the next couple of days.<br>
<br>
The following are the costs of moving:<br>
<ul>
 <li>All players go with you but you will lose 30% of your Club Members</li>
 <li>You will get a new ground at default newbie size</li>
 <li>No change in BT20 series/placement</li>
 <li>There will be a charge of 4 x week's salary at time of move or 10% of current bank balance, whichever is greater</li>
</ul>
<br>
For any team that moves to a non-FC playing country, there will be a FC 
subsidy paid to those teams in lieu of playing FC. The subsidy is based 
on your OD division and is payable at the following rates:<br>
Division 1: ยฃ50,000 per week<br>
Division 2: ยฃ33,500 per week<br>
Division 3: ยฃ22,500 per week<br>
Division 4: ยฃ15,000 per week
			<br><br>
			
    <h3 id="competitions" class="subheadernew">15. Competitions</h3>
      Battrick has three competitions which everyone takes part in:<br>
<br>
A 50 over One Day League<br>
A 50 over cup<br>
The BT20 20 over international league competition.<br>
<br>
In selected nations (Australia, England, India, New Zealand, Pakistan, 
South Africa, Sri Lanka, West Indies) there is an FC League competition.<br>
<br>
You also have the option to arrange friendly matches for days where you have no competitive matches.<br>
<br>
There are also international and U19 50 over matches, and in the future, test matches.<br>
<br>
<b>THE FIRST CLASS LEAGUE</b><br>
<br>
First class matches last for up to 3 days, and each day lasts 110 overs 
each. Both teams have a maximum of two innings each. The follow on is 
enforceable with a 150 runs or better first innings lead.<br>
<br>
All leagues consist of six teams so you will play ten games in total, 
split home and away. You will be competing with five other teams for 
promotion, relegation or ultimately, your national title.<br>
<br>
<u>The League Structure</u><br>
<br>
First class matches operate on a pyramidal league system. In each 
country there is one top level division, two 2nd level divisions, four 
3rd divisions and so on in powers of 2.<br>
<br>
Your division will be called something like VI.9. The roman numeral (VI =
 6) is the level of your division while the 9 is the division number.<br>
<br>
At the end of a season the team ranked first in the division is declared the division winner and is promoted automatically.<br>
<br>
The teams ranked second, third and fourth will remain as they are in exactly the same division for the next season.<br>
<br>
The teams ranked fifth and sixth will be relegated if there is a lower league to relegate to.<br>
<br>
In the event of teams having an equal number of points the tiebreakers 
are (in order of importance) - most wins, fewest losses, most wickets, 
most runs.<br>
<br>
<u>The Points System</u><br>
<br>
For a win 14 points are awarded to the winning side.<br>
For a tie 7 points are awarded to each side.<br>
For a draw 4 points are awarded to each side.<br>
For a loss the losing side gets no points.<br>
<br>
There are also bonus points awarded for the performances of each side in each first innings. These are awarded as follow:<br>
<br>
200 - 239 runs = 1 batting point<br>
240 - 279 runs = 2 batting points<br>
280 - 319 runs = 3 batting points<br>
320 - 359 runs = 4 batting points<br>
360 runs or over = 5 batting points<br>
<br>
3 - 5 wickets taken = 1 bowling point<br>
6 - 8 wickets taken = 2 bowling points<br>
9 - 10 wickets taken = 3 bowling points<br>
<br>
<u>Prize money</u><br>
<br>
Teams finishing 1st down to 6th are awarded prize money at the end of the season as follows (ยฃ000s):<table class="list"><tbody><tr><td class="fieldCol" width="75">Level</td><td class="fieldCol" width="100">1st</td><td class="fieldCol" width="100">2nd</td><td class="fieldCol" width="100">3rd</td><td class="fieldCol" width="100">4th</td><td class="fieldCol" width="100">5th</td><td class="fieldCol" width="100">6th</td></tr><tr><td>I</td><td>2,000</td><td>1,600</td><td>1,400</td>   <td>1,200</td><td>1,000</td><td>900</td></tr><tr><td>II</td><td>1,100</td><td>1,000</td><td>900</td><td>820</td><td>720</td><td>680</td></tr><tr><td>III</td><td>760</td><td>720</td><td>680</td><td>640</td><td>560</td><td>520</td></tr><tr><td>IV</td><td>600</td><td>560</td><td>520</td><td>480</td><td>400</td><td>380</td></tr><tr><td>V</td><td>440</td><td>400</td><td>380</td><td>360</td><td>320</td><td>300</td></tr><tr><td>VI</td><td>340</td><td>320</td><td>300</td><td>280</td><td>220</td><td>200</td></tr><tr><td>VII</td><td>240</td><td>220</td><td>200</td><td>180</td><td>140</td><td>120</td></tr><tr><td>VIII</td><td>160</td><td>140</td><td>120</td><td>100</td><td>80</td><td>70</td></tr><tr><td>IX</td><td>90</td><td>80</td><td>70</td><td>60</td><td>40</td><td>30</td></tr><tr><td>X</td><td>50</td><td>40</td><td>30</td><td>20</td><td>10</td><td>5</td>    </tr></tbody></table>Gate
 receipts reflect the fact that visiting fans come to games as well. As 
such, the details on both teams will be used in calculating game 
attendance although the weighting will be towards the home team.<br>
<br>
Additionally FC matches have Match tickets, a large number of your fans 
love the game so much; they are happy to pay for three days regardless 
of how long the game goes and won't care about a refund if the game 
finishes early.  So you will receive the majority of your income from FC
 games on day one of the match.<br>
<br>
<b>THE ONE DAY LEAGUE</b><br>
<br>
The One Day league is a national club championship. Matches consist of one innings of 50 overs per team.<br>
<br>
One day matches are played every Friday thoughout the season. Your 
league will consist of a total of 8 teams, and you will play each side 
home and away, making a total of 14 matches.<br>
<br>
The One Day championship is organised in pyramidal structure, with up to
 6 levels to the pyramid. The more teams in a country, the more levels 
to the pyramid. Each layer contains one or more leagues, and each league
 contains 8 teams. The pyramid therefore looks like this:<br>
<br>
One Day I (all nations, 1 league, 8 teams)<br>
One Day II (all nations, 4 leagues, 32 teams)<br>
One Day III (all nations, 16, leagues, 128 teams)<br>
One Day IV (all nations, 64 leagues, 512 teams)<br>
One Day V (Aus, Eng, Ind, NZ and SA only, 256 leagues, 2048 teams)<br>
One Day VI (Aus and Eng only, 256 leagues, 2048 teams and 512 leagues and 4096 teams respectively)<br>
<br>
Points are awarded as follows<br>
Win - 4 points<br>
Loss - 0 points<br>
Tie - 2 points each.<br>
<br>
Please note that number of wickets lost is not considered in this league
 format. League positions are decided by the number of points scored. if
 this is equal, net run rate is used as a decider.<br>
<br>
All teams who finish top of their league table will have a chance of 
promoting, but some will be promoted automatically and some will face a 
playoff. To determine which, all the first place teams are ranked by 
points scored and net run rate. This information can be found in 
'Promotion Info' on your league page.<br>
<br>
The top half of this list will go up automatically, and the bottom half will play off against a team from the next level up.<br>
<br>
The teams finishing 7th and 8th will relegate automatically, unless they
 are in the bottom level of their nation. The teams finish 5th and 6th 
will face a play off to stay up against a team from the lower level 
(unless in the bottom level). The winners of playoff matches swap places
 with the team they played.<br>
<br>
Promotion and relegation works different for level VI in England and Australia.<br>
<br>
Level VI in England is twice the size of Level V. The team placed 1st 
promotes and 2nd gets a play-off against a team who finished 5th or 6th 
in level V.<br>
<br>
Level VI in Austalia is the same size as level V. The teams placed 1st and 2nd both promote automatically to level V.<br>
<br>
Play offs are played in Week 16 and the team from the higher league gets
 home advantage.  There are no gate receipts for Play-off matches for 
either team.<br>
<br>
<u>Reaching a Result</u><br>
<br>
In either the cup competition or in a play off match, where an outright 
result must be reached, in the event of a tie the first decider called 
upon is wickets remaining, the team with the greater number remaining 
being the winner. If this is unable to decide matters, then the scores 
after 15 overs are compared for runs, and then wickets as well.<br>
<br>
<u>Prize money</u><br>
<br>
Teams finishing 1st down to 8th are awarded prize money at the end of the season as follows (ยฃ000s):<table class="list"><tbody><tr><td class="fieldCol" width="75">Level</td><td class="fieldCol" width="100">1st</td><td class="fieldCol" width="100">2nd</td><td class="fieldCol" width="100">3rd</td><td class="fieldCol" width="100">4th</td><td class="fieldCol" width="100">5th</td><td class="fieldCol" width="100">6th</td><td class="fieldCol" width="100">7th</td><td class="fieldCol" width="100">8th</td></tr><tr><td>I</td><td>1,000</td><td>800</td><td>700</td><td>600</td><td>550</td><td>520</td><td>400</td><td>380</td></tr><tr><td>II</td><td>500</td><td>400</td><td>380</td><td>360</td><td>340</td><td>320</td><td>250</td><td>240</td></tr><tr><td>III</td><td>300</td><td>250</td><td>240</td><td>230</td><td>220</td><td>210</td><td>190</td><td>180</td></tr><tr><td>IV</td><td>200</td><td>190</td><td>180</td><td>170</td><td>160</td> <td>150</td><td>120</td><td>110</td></tr><tr><td>V</td><td>140</td><td>120</td><td>110</td><td>100</td><td>90</td><td>80</td><td>60</td><td>50</td></tr><tr><td>VI</td><td>70</td><td>60</td><td>50</td><td>40</td><td>30</td><td>20</td><td>10</td><td>5</td></tr></tbody></table><br>
<br>
<b>THE OD CUP</b><br>
<br>
All teams take part in a national 50 over cup competition, with fixtures
 played on Sundays. The fixtures for each round are drawn randomly and 
are not seeded, gate receipts are split 50:50 between teams. All managed
 teams are included in the Cup, with some bot teams added to make up the
 numbers. All teams knocked out of the Cup will be able to arrange 
Sunday friendlies for subsequent weeks.<br>
<br>
In the event of scores being equal at the conclusions of the innings, 
the following factors are used to decide the result. In order of 
importance: wickets taken; runs scored after 15 overs; wickets taken 
after 15 overs. <br>
<br>
Reaching a Result<br>
<br>
In either the cup competition or in a play off match, where an outright 
result must be reached, in the event of a tie the first decider called 
upon is wickets remaining, the team with the greater number remaining 
being the winner. If this is unable to decide matters, then the scores 
after 15 overs are compared for runs, and then wickets as well. <br>
<br>
Prize money for the winner and runner up in the cup is ยฃ1,000,000 and 
ยฃ250,000 respectively. This money is awarded at the end of the season, 
not at the end of the cup.<br>
<br>
<b>THE BT20 LEAGUE</b><br>
<br>
The BT20 league is an international club championship. Matches consist 
of 20 overs per side each, and are fast-paced with high scoring rates. 
For more information on this style of game, see the beginners guide.<br>
<br>
BT20 matches are played throughout the season, alternating with FC 
matches. Two weeks of FC matches are followed by a week of BT20 matches.
 The first week of BT20 is Week 4 of the season. During a BT20 week, 
matches are played once a day on Tuesday, Wednesday and Thursday. Games 
begin at 00:30 (BT time) for Australia, New Zealand, West Indies or one 
of 11:45, 12:30 or 13:15 (BT time) for all the other countries. The 
start time is based on the nationality of the home side. Gate receipts 
are split 50:50 between the teams.<br>
<br>
There are 6 overs of fielding restrictions at the start of the match, 
and bowlers can bowl 4 overs each. You will not be able to select a 
bowling strategy at this point. All teams will use the same strategy 
which is set out as below:<br>
<table><tbody><tr><td>Over</td><td width="20">1</td><td width="20">2</td><td width="20">3</td><td width="20">4</td><td width="20">5</td><td width="20">6</td><td width="20">7</td><td width="20">8</td><td width="20">9</td><td width="20">10</td><td width="20">11</td><td width="20">12</td><td width="20">13</td><td width="20">14</td><td width="20">15</td><td width="20">16</td><td width="20">17</td><td width="20">18</td><td width="20">19</td><td width="20">20</td></tr><tr><td>Bowler No</td><td>1</td><td>2</td><td>1</td><td>2</td><td>3</td><td>2</td><td>3</td><td>4</td><td>5</td><td>4</td><td>5</td><td>3</td><td>5</td><td>3</td><td>5</td><td>4</td><td>1</td><td>4</td><td>1</td><td>2</td></tr></tbody></table><br>
Points are awarded as follows<br>
Win - 4 points<br>
Loss - 0 points<br>
Tie - 2 points each.<br>
Please note that number of wickets lost is not considered in this league format.<br>
<br>
The BT20 championship is organised in pyramidal structure, with 7 levels
 to the pyramid. Each layer contains one or more leagues, and each 
league contains 12 teams. The pyramid looks like this<br>
<br>
BT20 Premier (1 league, 12 teams)<br>
BT20 Division II (4 leagues, 48 teams)<br>
BT20 Division III (16, leagues, 192 teams)<br>
BT20 Division IV (64 leagues, 768 teams)<br>
BT20 Division V (256 leagues, 3072 teams)<br>
BT20 Division VI (1024 leagues, 12288 teams)<br>
BT20 Division VII (1024 leagues, 12288 teams)<br>
<br>
The team finishing top in each division is promoted automatically into 
the next level up. The bottom 4 teams are relegated to the next level 
down, unless they are in the lowest layer already, or division VI in 
which case only the bottom club is relegated. In all cases, net run 
rates is used to decide when points scored is equal.<br>
<br>
<u>Prize money</u><br>
<br>
Teams finishing 1st down to 6th are awarded prize money at the end of the season as follows (ยฃ000s):<table class="list"><tbody><tr><td class="fieldCol" width="75">Level</td><td class="fieldCol" width="100">1st</td><td class="fieldCol" width="100">2nd</td><td class="fieldCol" width="100">3rd</td><td class="fieldCol" width="100">4th</td><td class="fieldCol" width="100">5th</td><td class="fieldCol" width="100">6th</td></tr><tr><td>I</td><td>500</td><td>400</td><td>350</td><td>300</td><td>275</td><td>260</td></tr><tr><td>II</td><td>250</td><td>200</td><td>190</td><td>180</td><td>170</td><td>160</td></tr><tr><td>III</td><td>150</td><td>125</td><td>120</td><td>115</td><td>110</td><td>105</td></tr><tr><td>IV</td><td>100</td><td>95</td><td>90</td><td>85</td><td>80</td><td>75</td></tr><tr><td>V</td><td>70</td><td>65</td><td>60</td><td>55</td><td>50</td><td>45</td></tr><tr><td>VI</td><td>40</td><td>35</td><td>30</td><td>25</td><td>20</td><td>15</td></tr><tr><td>VII</td><td>10</td><td></td><td></td><td></td><td></td><td></td></tr></tbody></table><br>
<b>FRIENDLIES</b><br>
<br>
The friendly system allows all teams to book a friendly match in any 
format (FC, OD, BT20) with any other team in the world on the days 
possible for both teams.<br>
<br>
The system automatically takes into account what games are already 
scheduled for both teams and what time zone they are in before providing
 the option to book in friendly games on all opportunities between the 
two teams. When you choose to challenge a team to a friendly from their 
pavilion page, you will see a schedule of all possible game times 
between the two teams over the next eight weeks. In each of the three 
game types, you will have an option of Home or Away to book the game, as
 long as time permits. This will allow teams in the non-FC countries to 
experiment with FC during the non-BT20 weeks as well as allow all teams 
to participate in FC friendlies over weekends.<br>
<br>
Please note that due to game times, some combinations will not be 
possible in certain formats. For example, a PNG team and an English team
 cannot book a FC game at the PNG team's home ground leading into a BT20
 week. Additionally, games can only be booked for the next BT day 
onwards no matter what time it is in the current BT day.<br>
<br>
Friendlies generate income, but the crowds and therefore gate takings 
are smaller than for competitive matches. Spectators can buy match 
tickets in advance for FC matches, which means that most of your FC 
income will be collected on Day 1. Players do not lose any fitness from 
friendly matches but their fitness level going into the match will 
affect their performance during the match. Friendly matches do not 
affect Club Morale or Members Confidence.<br>
<br>
Please note that there will be restrictions on U19 and Nat players for these games over the weekends where there are fixtures.<br>
<br>
    * OD games are assumed to take 8 hours<br>
    * BT20 games are assumed to take 5 hours<br>
    * FC games are assumed to take 57 hours<br>
    * You cannot schedule a game to start within 12 hours of the end of a match<br>
    * You cannot schedule a game to that would end within 12 hours of the start of a match<br>
<br>
Obviously a friendly match doesn't attract such a large crowd as a 
competitive match, nor provide the same level of experience to players 
due to the lower stakes, but it will help keep them in good touch.<br>
<br>
<b>TEAM RANKING</b><br>
<br>
You will find your team ranking on your Pavillion page. Your national 
ranking is based on a combination of your position in the FC, OD and 
BT20 leagues, with appropriate weighting attached to each competition. <br>
<br>
When we calculate the international rankings, we use another weighting 
that will take account of the size of the country that you are playing 
in to level the playing field for OD and FC rankings - your BT20 ranking
 is obviously global already!<br>
<br>
The ranking will be recalculated each Saturday morning BT time.
			<br><br>
			
    <h3 id="matchorders" class="subheadernew">16. Match Orders</h3>
            Finally onto the nitty gritty of competition now. Before you
 play a match, it is up to you to pick your side and give the players 
your orders.<br>
<br>
In your clubs fixture page, it will show you the games you have played, 
any matches that you have currently ongoing, and also the next few games
 to play. For each of the games to play, you can use the orders link to 
submit your match orders for that game.  <br>
<br>
Whilst it is always advisable to set Orders in advance, the final 
cut-off point for setting Orders is 20 minutes before the scheduled 
start of play. ie: Orders must be set by 10.10am if the match is 
scheduled to start at 10.30am.<br>
<br>
<b>ONE DAY MATCHES</b><br>
<br>
<b>Select a line up</b> - The first thing that you need to do is decide 
which eleven players you want to play in the match and then enter them 
in the order in which you want them to bat. Generally people will bat 
the better batsmen at the top of the order, and the bowlers with less 
batting skill at the bottom, but it is entirely up to you.<br>
<br>
<b>Select captain and wicket keeper</b> - Use the buttons to select the teams wicket keeper and captain.<br>
<br>
<b>Select bowlers</b> - You must select 5 bowlers for a one day match. 
Each bowler will bowl 10 overs. The player you select as bowler 1 (b1) 
will bowl first, b2 will bowl second, b3 will come on first change and 
so on.<br>
<br>
<b>Individual orders</b> - The next step is to give the players 
individual orders if you so wish. You can give instructions to each 
batsman as to how to approach his innings: attacking, normal or 
defensive. Similarly, you can give the same choice of orders to each of 
your 5 bowlers that you have nominated. Although the batsman and bowlers
 will generally follow this order, they may deviate if the situation 
requires it. They are more likely to do this if their experience is 
high.<br>
<br>
<b>Select bowling tactics</b> - There are some preset tactics that 
determine which order the bowlers bowl in, and for how long. Each one 
has plus points and negative points, you must select the one that you 
think is most appropriate for the match.<br>
<br>
<b>The Toss</b> - An important part of the game. If you are the away 
side, you will be asked what you want to call for the toss. Everyone 
must then declare what they intend to do first if they win the toss, bat
 or bowl. This will not be shown to the opposition prior to the match.<br>
<br>
Finally, you can give your team an overall order of how to approach the 
match. These orders will affect the fitness level (PFL) of the players 
that play in the game - it will not affect any players not involved in 
the game. They can either:<br>
<br>
<b>Take it Easy</b> - The players will conserve energy and so not 
perform on the day to their potential, but their personal fitness level 
will go down less then normal.<br>
<br>
<b>Play as Normal</b> - The players will play to their natural ability, with a standard change to their personal fitness level.<br>
<br>
<b>Go For It</b> - The players will run themselves into the ground 
trying to win the game, and will feel the effects afterward resulting in
 their personal fitness level falling more then normal.<br>
<br>
It is up to you to decide which the game merits.<br>
<br>
These orders must be set prior to the start of a game. If for whatever 
reason you forget to change the orders, the team will resort to the 
default match orders. You can change the current orders to the default 
by selecting the check box at the bottom of the orders screen prior to 
submitting your orders.<br>
<br>
<br>
<br>
<b>FIRST CLASS MATCHES</b><br>
<br>
<b>Select a line up</b> - The first thing that you need to do is decide 
which eleven players you want to play in the match and then enter them 
in the order in which you want them to bat. Generally people will bat 
the better batsmen at the top of the order, and the bowlers with less 
batting skill at the bottom, but it is entirely up to you. <br>
<br>
<b>Select wicket keeper</b> - Use the button to select the team's wicket keeper.<br>
<br>
<b>Select captain</b> - Use the button to select the team's captain. 
Your captain in First Class matches is a very important member of the 
team as he will be responsible for decision making on the field with 
regard to how the bowlers are rotated. Try to pick a captain with good 
captaincy skills and some experience.<br>
<br>
<b>Select bowlers</b> - You can select as many bowlers as you want in 
first class matches, all players except for the wicket keeper may be 
selected to bowl although you should think twice before selecting your 
opening batsman with worthless bowling to turn his arm over! <br>
<br>
<b>Select bowling tactics</b> - Unlike the one day games there are no 
preset patterns that determine which order the bowlers bowl in. You set 
the priority and other settings and your captain makes decisions on the 
field of play based on how your bowlers are performing. Priority 1 and 2
 open the bowling. Under the bowling options you have four decisions to 
make.<br>
<br>
1. <u>Priority</u> - Select the priority that you wish your captain to give to each bowler.<br>
<br>
2. <u>Max overs/spell</u> - This is the maximum amount of overs that you
 want this bowler to bowl in an individual spell. Your captain may 
override this setting dependant on the performance of your bowlers.<br>
<br>
3. <u>Min overs/spell</u> - This is the minimum amount of overs that you
 want this bowler to bowl in an individual spell. Your captain may 
override this setting dependant on the performance of your bowlers.<br>
<br>
4. <u>Max RR/spell</u> - This is guidance for your captain as to the 
maximum run rate that your bowler should go for before he is taken off. 
Your captain may override this setting dependant on the performance of 
your bowlers.<br>
<br>
<b>Individual orders</b> - The next step is to give the players 
individual orders if you so wish. You can give instructions to each 
batsman as to how to approach his innings: attacking, normal or 
defensive. Similarly, you can give the same choice of orders to each of 
the bowlers that you have nominated. Although the batsman and bowlers 
will generally follow this order, they may deviate if the situation 
requires it. They are more likely to do this if their experience is 
high.<br>
<br>
<b>The Toss</b> - An important part of the game. If you are the away 
side, you will be asked what you want to call for the toss. Everyone 
must then declare what they intend to do first if they win the toss, bat
 or bowl. This will not be shown to the opposition prior to the match.<br>
<br>
<br>
<b>Declarations</b> - You can declare in both your first and second innings in the match. <br>
<br>
First Innings Declaration target - The minimum declaration total of runs scored in the first innings is 200.<br>
<br>
Second Innings Declaration target - In the second innings you must score
 a minimum of 100 runs before you can declare. However if this leaves 
your opponent with a target of less than 100, then the captain will 
override the instruction and bat on until you lead by at least 100 runs.
 The figure that you enter for your second innings declaration target is
 the figure that you want to score in your second innings before your 
captain declares.<br>
<br>
<br>
<b>Following on</b> - You have the option to enforce the follow on, 
select the Yes option if you want to make your opponent bat again. If 
you have batted first and your opponent is 150 runs or more behind after
 both teams have completed their first innings, you have the option to 
tell the opponent to "follow on". This means you can tell the other team
 to bat again even though they've just finished their first innings. 
This potentially means that you might not need to bat again if they get 
bowled out a second time and not be in the lead.<br>
<br>
<br>
<b>Changing orders overnight</b> - At the end of the day's play you have the option to change the following for the next day's play:<br>
<br>
Add or amend declaration targets.<br>
Amend follow on instructions.<br>
Amend your bowler selections, you can add or remove bowlers, change their priority and individual settings. <br>
You cannot change the batting order.<br>
 <br>
<br>
<b>Selling a player during a game</b> - If you sell a player at any 
point during the match (including the twenty minutes before the start on
 day one when orders are locked) he will not be replaced in your team 
and will play the whole game.<br>
<br>
<b>TIE/PAN/GFI</b> - the Take It Easy, Play As Normal and Go For It options are not available for First Class matches.<br>
<br>
<b>Overs in a day</b> - There are 110 overs in a day, 35 overs in the morning session, 35 in the afternoon and 40 in the evening session.<br>
<br>
<br>
<b>Regions and Weather</b><br>
<br>
When you register you are asked to select a region to play in. The only 
effect that this has on the game is the weather. On the region page you 
will get a weather forecast for today and the next 5 days. Unfortunately
 Battrick forecasters are as bad as the rest of them, so it can change 
from day to day. The chances of getting any sort of weather is exactly 
the same in every region. One of the main advantages of playing cricket 
in Battrick is that it will never rain, so no umbrellas or running back 
to the pavilion here!!<br>
<br>
The weather can have a large impact on your matches. Certain types of 
player will flourish in certain weather conditions although may suffer 
in others.<br>
<br>
Also the weather will affect the match attendance to a degree.
			<br><br>
			
    <h3 id="internationalteams" class="subheadernew">17. International Teams</h3>
      International matches are played between teams representing 
Afghanistan, Australia, Bangladesh, Canada, England, India, Ireland, 
Kenya, Netherlands, New Zealand, Pakistan, Papua New Guinea, Scotland, 
South Africa, Sri Lanka, United States of America, West Indies and 
Zimbabwe. Each of these countries is represented by a National squad 
(from Season 18 for new countries) and an Under 19 squad.<br>
<br>
World Cups are alternated each season between the National teams and the
 U19 teams and at the end of each World Cup the manager of that season's
 campaign can either step down or run for re-election. The winning 
manager of the election shall reign as manager for the whole length of 
their campaign which is 2 seasons (32 weeks). New nominees should be 
very aware of this contract as it is binding and release from National 
Manager duties will not be approved.<br>
<br>
Every season, the usership of the country get to decide who will take 
charge of their National teams for the coming 32 weeks by way of an 
election, (see below for election rules). The games are currently 
limited to One Day Internationals (ODI) and are played on Sundays and 
Mondays, as indicated on the calendar.<br>
<br>
While only players that are 19 or younger are able to represent the U19 
side, any player is eligible to play for his national side. The national
 manager will be able to see all of a players skills once they have been
 added to the squad, but only while they are in the squad. There is a 
limit of 22 players to the squad size so the manager will have to choose
 carefully to ensure that he has the right players in the right form at 
the right time. When players are dropped from the side, the National/U19
 team morale will suffer as players become anxious about their places.<br>
<br>
When a player is called up to the national side, he will spend about 
half of his Sundays and Mondays with the national squad. This means that
 they are not available for Sunday Cup or Friendly matches while they 
are on national team duties. The national squads are locked from Sunday 
00:00 BT time to Tuesday 00:00 BT time every week, which means that 
national managers cannot call up or drop players during this time.<br>
<br>
Any of your players playing in a national squad will still receive 
training as normal and will receive a subsidy towards their wages for 
any week in which they play in a representative game. This subsidy will 
be paid out during the New Zealand Daily Updates on a Thursday (18:00 BT
 time). This will be paid to all nations at the same time each week.<br>
<br>
Although all ODIs played outside of a world cup are classed as 
friendlies, they count as full international matches and will count 
towards a teams ranking points. At the start of Battrick, all teams had 
the same ranking points. As more games have been played, these points 
have changed to show the leading International side.<br>
<br>
International players who belong to unmanaged teams will be eligible for
 release after they have played three games for their current 
international side (ie three games for the U19s does not make a player 
eligible for release if he is in the full side) and only at the request 
of their current international manager (who must contact the game staff 
using the Contact Us option under the Help menu. This only applies to 
players that are <b>current</b> members of National/U19 teams. Please 
note that a player will not be listed at a requested time but rather 
when an Admin member can action the request). Players will be listed at 
an initial price of one week's wages. Players will only be listed once. 
If they fail to sell, they will stay with their bot team until it is 
reset at which time they will retire from the game. Players who belong 
to a national squad cannot be fired by their managers.<br>
<br>
We have been investigating the birth certificates of all player's 
parents and grandparents, and it turns out that some players have a 
second nation that they are eligible to play for apart from their nation
 of birth. This will show up in their page under second nationality. 
Additionally, we have decreed that if a player spends five seasons in 
the same club in another country, he will become eligible to play for 
that country in International matches. This will automatically show up 
on a player's page as an adopted nation. However, when a player has 
played an International match for either the U19 or full national sides 
of any of his eligible countries, he will only be eligible to play for 
that country.<br>
<br>
<u><b>Election rules</b></u><br>
<br>
All election candidates must abide by the following rules:<br>
<br>
From the day that elections begin each season, (usually week 2 of a 
season) you may start a thread in your national Sledging forum 
advertising your candidacy. Please start the thread title with [Elec] to
 ensure it is clearly shown as an election thread.<br>
<br>
1) No Spamming<br>
<br>
Soliciting votes via BT-mail is absolutely forbidden. Doing so may lead to disqualification for candidates.<br>
<br>
2) No Thread Bumping<br>
<br>
If your thread is falling from prominence, tough. Try to make a good impression while it lasts.<br>
<br>
3) No Cross-Thread Campaigning<br>
<br>
Campaigning in another candidate's election thread, or barracking for a 
rival candidate you support, is forbidden. Messages will be deleted and 
the perpetrators may be banned from Sledging.<br>
<br>
Candidates would be advised to avoid posting in rivals' threads at all. 
Should you do so, be careful that your post is polite, and a relevant 
enquiry rather than self-promotion in whatever guise. The judgement of 
the Admin Team is final.<br>
<br>
If a candidate is disqualified from an election for breaking election 
rules then that disqualification covers all countries in that current 
election. They may campaign for post in the following season's 
elections.<br>
<br>
Regarding non-candidates:<br>
<br>
1. No commentary on threads. Either ask a question of the candidate, or don't post.<br>
2. No bumping your "preferred" candidates thread with meaningless posts saying you like them or such.<br>
3. Keep the comments relevant to the person whose thread you are posting in. Do not comment on other candidates in their thread.<br>
<br>
<u><b>How to vote</b></u><br>
<br>
Votes can be placed by going to Global&gt;Country Details&gt;Elections 
and entering the userID/teamID of whomever you wish to vote for. We ask 
you to vote sensibly as the winner will be responsible for your national
 or U19 team for the next two seasons.<br>
<br>
If the current manager leaves battrick during their tenure the post will
 be offered to the user who recieved the next largest number of votes in
 the last election. If there is no such unique user, then there will be a
 fresh election. The following election will still occur at the end of 
the original two season period.<br>
<br>
<u><b>Tied election</b></u><br>
<br>
Should two or more candidates tie for first place in an election, then 
the user who has been playing Battrick for the longest will be declared 
the winner. In the unlikely event that two managers joined on the same 
day, then the user with the lowest teamID will win.
			<br><br>
			
    <h3 id="netrunrate" class="subheadernew">18. Net Run Rate</h3>
     As is now common in world one day cricket, Battrick uses some 
called Net Run Rate (NRR) to separate sides level on points in our OD 
league competition:<br>
<br>
The following is how it is described within the rules of the actual game:<br>
<div class="msgQuote">A team's net run rate is calculated by deducting 
from the average runs per over scored by that team, the average runs per
 over scored against that team.<br>
<br>
In the event of a team being all out in less than its full quota of 
overs, the calculation of its net run rate shall be based on the full 
quota of overs to which it would have been entitled and not on the 
number of overs in which the team was dismissed.</div><br>
<br>
Back with us?  Good!  Now let's try and explain that with a slightly more step by step approach.<br>
<br>
A teams run rate is their total number of runs divided by overs faced.  
Now as an over is six balls if an over isn't completed then you need to 
do a little calculation to find what to divide by.<br>
<br>
For example: 40.1 is actual 40 overs and one sixth of an over.  Thus, 
for the purpose of the runrate calculation, the teams has faced 40 + 1/6
 = 40.167 (3 d.p.) overs.<br>
<br>
If another ball is bowled, they have now faced 40 + 2/6 = 40.333 (3 
d.p.) overs. After the next ball (40.3 in normal terms) it's the more 
user friendly 40.5 as we're halfway through the over.<br>
<br>
So if a team scores 250 runs off 50 overs then their runrate is 250/50 =
 5.  If they got that same score off 47.3 overs, there RR would be 250 /
 47.5<br>
<br>
Net Run Rate simply involves taking your opponents final runrate away 
from your own total runrate.  The only slight exception is that now, if a
 team is bowled out, it is not the balls faced which their score is 
divided by; instead the full fifty over quota is used.<br>
<br>
Here are a few scenarios:<br>
<br>
<b>1. Side that bats first wins</b><br>
<ul><li>Team A bats first and sets a target of 287-6 off their full 
quota of fifty overs.  Team B fails in their run chase, early losses 
causing them to struggle to 243-9</li><li>Team A's runrate is 287 / 50 = 5.74</li><li>Team B's runrate is 243 / 50 = 4.86</li><li>Team
 A's NRR for this game is 5.74 - 4.86 = 0.88 .  If this was the first 
game of the season, their NRR for the league table would be +0.88</li><li>Team
 B's NRR for this game is 4.86 - 5.74 = -0.88 .  If this was the first 
game of the season, their NRR for the league table would be -0.88</li></ul>
<br>
<b>2. Side that bats second wins</b><br>
<ul><li>Team A bats first and sets a target of 265-8 off their full 
quota of fifty overs.  Team B successfully chases, getting their winning
 runs with a four with sixteen balls remaining, leaving them on 267-5</li><li>Team A's runrate is 265 / 50 = 5.12</li><li>Team B faced 47.2 overs and so their runrate is 267 / 47.333... = 5.64084... = 5.64 (2 d.p.)</li><li>Therefore
 Team A's net run rate for this game is 5.12 - 5.64084... = -0.52084... .
  If their net run rate for this season was previous +1.52 it is now 
+0.99916... = +1.00</li><li>Therefore Team B's net run rate for this 
game is 5.64084... - 5.12 = +0.52084... .  If their net run rate for 
this season was coincidentally also previously +1.52 it is now = +2.04</li></ul>
<br>
<b>3. Side that bats first is bowled out.  Side batting second wins.</b><br>
<ul><li>Team A bat first and are skittled out for 127 off 25.4 overs.  
Team B reaches the target for the loss of four wickets off 25.5 overs.</li><li>Despite
 Team A's runrate for the balls they faced being 127 / 24.667 = 5.19 
(2dp) because they were bowled out their run rate is worked out over the
 50 over quote;  127 / 50 = 2.54</li><li>Team B actually scored at a 
slower pace, however they managed to protect their wickets.  Therefore 
they use their balls faced runrate; 128 / 25.833 = 4.95 (2 dp)</li><li>Team
 A's NRR for this match is 2.54 - 4.95 = -2.41 and would be added 
(adding a minus to a positive having the effect of subtracting) to their
 seasons NRR.</li><li>Team B's NRR for the match is 4.95 - 2.54 = +2.41 and would be added to their seasons NRR.</li></ul>
<br>
<b>Side that bats second is bowled out.  Side batting first wins.</b><br>
<ul><li>Team A bat first and set a formidable 295-7 off their compliment
 of 50 overs.  Team B never gets close, being bowled out for 184 off 
35.4 overs.</li><li>Team A's runrate is 295 / 50 = 5.9</li><li>Team B's runrate is taken over 50 overs as they were bowled out; 184 / 50 = 3.68</li><li>Team A's NRR for this match is 5.9 - 3.68 = +2.22 and would be added to their seasons NRR.</li><li>Team B's NRR for the match is 3.68 - 5.9 = -2.22 and would be added to their seasons NRR.</li></ul>
<br>
<b>5. Both sides are bowled out, the team batting first therefore taking the points.</b><br>
<ul><li>Team A bat first manage 117 off 24 overs on a testing track.  Team B fall agonizingly short, reaching 112 off 23.3 overs.</li><li>As they were bowled out Team A's runrate is 117 / 50 = 2.34 (2dp)</li><li>As Team B were also bowled out their run rate is 112 / 50 = 2.24 (2dp)</li><li>Team A's NRR for this match is 2.34 - 2.24 = +0.10 and would be added to their seasons NRR.</li><li>Team B's NRR for the match is 2.24 - 2.34 = -0.10 and would be added to their seasons NRR.</li></ul>
<br>
Obviously in a tied game the teams runrates are equal and so the teams NRR for that season would be unaffected.<br>
<br>
Please Note: the Battrick engine stores run rate and net run rate 
figures to many more decimal places than used here in these examples.
			<br><br>
			
    <h3 id="playertransfers" class="subheadernew">19. Player Transfers</h3>
    The Transfer Market is where you can buy and sell players. Maybe you
 have trained a young star and want to reap the cash rewards for your 
efforts. Or maybe you need an all important batsman to secure your cup 
or league ambitions and bolster your team in weaker areas.<br>
<br>
<b>Buying Players</b><br>
<br>
To buy a player you must have sufficient funds in your bank account. 
Whilst the bank lends up to ยฃ350,000 in an overdraft facility, they will
 only allow up to ยฃ150,000 of the overdraft to finance a new player for 
your team.<br>
<br>
The transfer market on Battrick is a global run society with hundreds of
 players available 24 hours a day, 7 days a week. You can narrow your 
search down by using the separate skill search boxes to help find that 
all important new player. He may not always be on the market but keep 
trying every few days and maybe a player will match your criteria.<br>
<br>
<div class="ss"><br>
<img src="rules.asp_files/transfersearch.gif" alt="Image showing the transfer search feature" width="410" height="448"><br>
<span>The search feature allows you to narrow your focus on the Transfer Market page.</span><br>
</div><br>
<br>
Using the searches is also a valuable way to compare prices for your own
 players and to find out how much a certain player is likely to cost if 
you were to sell them. Look for players on the market with similar 
skills and follow their transfer closely. This is a very efficient way 
for Player Valuations.<br>
<br>
<div class="ss"><br>
<img src="rules.asp_files/transfermarket.gif" alt="Image showing some results from the transfermarket" width="490" height="400"><br>
<span>Some transfer market search results.</span><br>
</div><br>
<br>
Once you have bought a player, his contract tells him and you that he 
must be a part of your team for 42 days before he can be transfer listed
 again.<br>
<br>
If you decide that you no longer want to sell a player that you have 
listed, then you can bid to buy him back. The downside is that the deal 
will be treated as a proper transfer in all respects, i.e. You will have
 to pay the 5% selling fee, he will have a 42 day contract and you will 
lose any nets you might have had on him (he will be treated as a new 
player).<br>
<br>
<u>Please note:</u> When buying players on a Saturday morning to quickly
 put them into nets, check which country they are travelling from.  
Players who are arriving from a country who have already had their 
training updates will not benefit from any nets given to them with their
 new team.<br>
<br>
ie: Player A currently plays in Australia and is listed for a Saturday 
09:00 deadline.  User B from England buys him.  Player A has already 
received his training updates from his Australian team and won't be 
available for nets with his new England team until the following week.  
You may be able to select him for nets straight after his transfer, but 
he won't benefit from them.<br>
<br>
<b>Selling Players</b><br>
<br>
When you finally decide that you no longer need a player then you can 
list him on the transfer market. There are two charges that may be 
payable when you sell a player. <br>
<br>
- A listing fee of 5% of the reserve price of the player up to a maximum
 amount of ยฃ80,000. If your player sells 80% of the fee will be refunded
 meaning that you effectively pay 1%.<br>
<br>
- If the player sells then a 5% agent's fee on the total sale price is 
payable. There are no agents fees payable if the player does not sell.<br>
<br>
When you list your player, there is a confirmation box. Once you confirm
 this and accept to place your player on the market that is it, this 
cannot be undone. Your player will be on the Transfer Market for 3 days 
(72 hours from listing) for him to generate interest and have bids 
placed on him.<br>
<br>
The bidding system on Battrick works like this: The highest bidder when 
the bidding time has elapsed wins the player. Any bids within the last 3
 minutes of the players transfer time increases the bidding time by 
three minutes so it is not always worthwhile jumping in at the last 
moment to try and win with a late bid. If a team raises your bid, there 
will be a new note on the Main -&gt; News. It is very important to keep 
an eye on this when trying to buy a player.<br>
<br>
<b>Your Behaviour</b><br>
<br>
From time to time the Admin team may have cause to cancel, reverse or 
adjust transfers or act in individual ways which are appropriate to 
individual cases.<br>
<br>
The Admin team keep a watchful eye on the Transfer Market to make sure 
that all users benefit from the market equally. If we believe that some 
users are taking advantage of other users then the Admin team will 
intervene, Battrick does not allow over-priced transfers and these can 
be amended or reversed. Nor is it permitted to BT-mail any other user 
advertising players, this is regarded as Spam which can lead to 
punishments.<br>
<br>
If any users think they have spotted anything they think needs alerting 
then please notify the Admin team through the correct channels.<br>
<br>
Please also note that you are not allowed to use the BT-Mail system to 
send unsolicited mails to any user regarding players you may be selling 
or that you may wish to sell. We regard this as spam and you are very 
likely to receive a fine when caught.<br>
<br>
Remember, the transfer market is an open auction where anyone is 
permitted to place bids.  BT-mails to other managers asking them to stop
 bidding are against the spirit of the game and will be acted upon if 
reported.
			<br><br>
			
    <h3 id="personalbehaviour" class="subheadernew">20. Personal Behaviour</h3>
   Please also note that you are the manager of your team. No-one else 
is allowed to access it, not even close friends or family. We also do 
not allow managers to buy players from family or friends' teams or from 
teams who share the same computers or IP addresses. If you are accessing
 your team from a computer used by a fellow Battrick user then please 
contact us, naming all individuals involved. While you are most welcome 
to play Battrick in that situation, any transfers between these teams 
and your own will be in breach of the rules and severely punished.<br>
<br>
Over-inflated sales will be thoroughly checked by the Admin team and may be adjusted after they complete.<br>
<br>
If for whatever reason you do wish to leave the game, it is not 
permitted to hand your team over to anyone else as this would be unfair 
to users who are on the waiting list waiting for a team. Simply stop 
logging into the game and after seven weeks of inactivity your team will
 be deleted.<br>
<br>
Battrick reserves the right to refuse applications or to remove users from the game. Reasons for removal include:<br>
<br>
<ul><li>Running multiple teams</li><li>Sharing login details with other users or logging into another's account</li><li>Arranging for friends or family to buy your players at inflated prices</li><li>Match fixing</li><li>Abusive
 actions or language to other users or game staff such as making racist 
or personal attacks; attacks on a specific nation or religion, 
homophobic comments or any form of offensive discrimination</li><li>Attempting to disrupt the normal running of Battrick</li><li>Encourage cheating within the game or expose any methods of exploiting any game bugs</li><li>Any attempts to circumvent the Battrick systems (including editing of URLs)</li><li>Breaking the Sledging rules, (as outlined within Sledging)</li><li>Any
 illegal activities, such as promoting criminal activities or the use of
 illegal goods or substances, (drugs) or passing on illegal software 
(piracy) or CD-keys to such games/software</li><li>Masquerading as a member of the Admin Team (using BT, GM, COM or MOD in your username)</li><li>Anything detrimental to the gaming experience of other users</li><li>All other forms of cheating</li></ul>
In addition, you may not navigate Battrick via any means other than 
using a web browser or WAP/cellphone to click the links within the site.
 Changing URLs in the address field of your browser is forbidden, as is 
using other programs to scan Battrick, change information or navigate 
through data.<br>
<br>
However we do not limit our reasons for removing users to these criteria
 and reserve the right to adapt them as circumstances dictate. Decisions
 to remove users from the game are not taken lightly and are discussed 
among several members of the GM team who are regulated to ensure that 
they act responsibly.<br>
<br>
The Admin team may also penalise teams or users for minor offences such 
as BT-Mail spam, misuse of Press Releases, Guestbook entries and 
offensive ground/team names etc., advertising items or services you wish
 to buy/sell/trade in real life, accusing other users of cheating, 
(contact the GMs instead) or discussing decisions taken by GMs and/or 
moderators and these penalties include, (but are not restricted to) 
official warnings, Sledging bans and monetary fines.<br>
<br>
You are asked to:<br>
<ul><li>Read the game rules and FAQ before asking for help in the Newbie Questions board in Sledging, (do not use the GM Contact page!)</li><li>Remember this a game for all ages and minors might read what you write</li><li>Be respectful of other people; let's all try and get along</li><li>If you suspect someone of cheating please Contact the GMs</li><li>If
 you find a bug please post details of it on the Bug Reports board in 
Sledging, (do not use the GM Contact page unless the bug could be used 
to exploit a loophole or cheat)</li></ul>
Battrick wish to assure users that it is the duty of the Admin Team to 
ensure that this remains a fun and fair game for users of all ages, 
nationalities and backgrounds and punishments are only handed out in 
circumstances where individuals are not respecting that.
			<br><br>
			
    <h3 id="levels" class="subheadernew">Levels</h3>
  
	<p>Here is a complete list of the denominations for all the skill 
levels that are used in Battrick. Remember that each level represents a 
range of ability, not an absolute.</p>
		
	<div class="menutitle">Player skills etc.</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">useless<br></div>
	
	<div class="menuitem">worthless<br></div>
	
	<div class="menuitem">abysmal<br></div>
	
	<div class="menuitem">woeful<br></div>
	
	<div class="menuitem">feeble<br></div>
	
	<div class="menuitem">mediocre<br></div>
	
	<div class="menuitem">competent<br></div>
	
	<div class="menuitem">respectable<br></div>
	
	<div class="menuitem">proficient<br></div>
	
	<div class="menuitem">strong<br></div>
	
	<div class="menuitem">superb<br></div>
	
	<div class="menuitem">quality<br></div>
	
	<div class="menuitem">remarkable<br></div>
	
	<div class="menuitem">wonderful<br></div>
	
	<div class="menuitem">exceptional<br></div>
	
	<div class="menuitem">sensational<br></div>
	
	<div class="menuitem">exquisite<br></div>
	
	<div class="menuitem">masterful<br></div>
	
	<div class="menuitem">miraculous<br></div>
	
	<div class="menuitem">phenomenal<br></div>
	
	<div class="menuitem">elite<br></div>
	
	<div class="menufoot"></div><br>
	
	<div class="menutitle">Members &amp; Supporters Confidence</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">desolate<br></div>
	
	<div class="menuitem">despairing<br></div>
	
	<div class="menuitem">pessimistic<br></div>
	
	<div class="menuitem">hopeful<br></div>
	
	<div class="menuitem">happy<br></div>
	
	<div class="menuitem">animated<br></div>
	
	<div class="menuitem">joyous<br></div>
	
	<div class="menuitem">ecstatic<br></div>
	
	<div class="menuitem">over the moon<br></div>
	
	<div class="menufoot"></div><br>
	
	<div class="menutitle">Fitness Levels</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">exhausted<br></div>
	
	<div class="menuitem">drained<br></div>
	
	<div class="menuitem">fatigued<br></div>
	
	<div class="menuitem">low<br></div>
	
	<div class="menuitem">fair<br></div>
	
	<div class="menuitem">moderate<br></div>
	
	<div class="menuitem">fresh<br></div>
	
	<div class="menuitem">lively<br></div>
	
	<div class="menuitem">invigorated<br></div>
	
	<div class="menuitem">energetic<br></div>
	
	<div class="menuitem">sublime<br></div>
	
	<div class="menufoot"></div><br>

	<div class="menutitle">Aggression</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">defensive<br></div>
	
	<div class="menuitem">cautious<br></div>
	
	<div class="menuitem">steady<br></div>
	
	<div class="menuitem">attacking<br></div>
	
	<div class="menuitem">destructive<br></div>
	
	<div class="menufoot"></div><br>

	<div class="menutitle">Form, Leadership &amp; Academy</div>
	<div class="menuhead"></div>
	
	<div class="menuitem">useless<br></div>
	
	<div class="menuitem">worthless<br></div>
	
	<div class="menuitem">abysmal<br></div>
	
	<div class="menuitem">woeful<br></div>
	
	<div class="menuitem">feeble<br></div>
	
	<div class="menuitem">mediocre<br></div>
	
	<div class="menuitem">competent<br></div>
	
	<div class="menuitem">respectable<br></div>
	
	<div class="menuitem">proficient<br></div>
	
	<div class="menuitem">strong<br></div>
	
	<div class="menuitem">superb<br></div>
	
	<div class="menufoot"></div>

	<br><br>

          </div>
        </div>
        <div id="boxbottom"></div>
      </div><!-- righttcolumn -->

    </div><!-- page -->
    
    	<script type="text/javascript"><!--//--><![CDATA[//><!--
    	var scrarr = "small-2.png", scrhref = "1";
    	//--><!]]></script>
    	<script type="text/javascript" src="rules.asp_files/jquery.js"></script>
<script type="text/javascript" src="rules.asp_files/menufloat.js"></script>
<script type="text/javascript" src="rules.asp_files/clock_bgiframe_superfish.js"></script>

    <script type="text/javascript"><!--//--><![CDATA[//><!--
    timeDiff(new Date(2011,8,7,17,1,28));
	//--><!]]></script>
    <script type="text/javascript" src="rules.asp_files/rules.js"></script>

  
</body></html>

Added doc/squad.asp.html.









































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
<!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" xml:lang="en"><head>
    <title>Battrick - Squad</title>

  <link rel="stylesheet" type="text/css" href="squad.asp_files/core.css">

    <!--[if lte IE 8]>

  <link rel="stylesheet" type="text/css" href="http://battrick.org/nl/ie.min.css?20100602230624" />

    <![endif]-->
    <meta http-equiv="content-language" content="en-gb">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <script type="text/javascript" src="squad.asp_files/bt.js"></script>

    <script type="text/javascript"><!--//--><![CDATA[//><!--
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-2057011-1']);
    _gaq.push(['_trackPageview']);
    (function() {
        var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
        ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
        (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);
    })();
    //--><!]]></script><script src="squad.asp_files/ga.js" async="" type="text/javascript"></script>

  <script>try {  for(var lastpass_iter=0; lastpass_iter < document.forms.length; lastpass_iter++){    var lastpass_f = document.forms[lastpass_iter];    if(typeof(lastpass_f.lpsubmitorig)=="undefined"){      if (typeof(lastpass_f.submit) == "function") {        lastpass_f.lpsubmitorig = lastpass_f.submit;        lastpass_f.submit = function(){          var form = this;          try {            if (document.documentElement && 'createEvent' in document)            {              var forms = document.getElementsByTagName('form');              for (var i=0 ; i<forms.length ; ++i)                if (forms[i]==form)                {                  var element = document.createElement('lpformsubmitdataelement');                  element.setAttribute('formnum',i);                  element.setAttribute('from','submithook');                  document.documentElement.appendChild(element);                  var evt = document.createEvent('Events');                  evt.initEvent('lpformsubmit',true,false);                  element.dispatchEvent(evt);                  break;                }            }          } catch (e) {}          try {            form.lpsubmitorig();          } catch (e) {}        }      }    }  }} catch (e) {}</script></head>
  <body id="squad">

    <div id="pagecontainer" style="margin: 0 auto;text-align: left;width:714px;">

    <div id="header">
		    <div id="banner">
			      	<div id="adrotator">

							<script type="text/javascript">google_ad_client="pub-1256369599706792";/* top banner, 468x60, created 8/26/08 */ google_ad_slot = "1766137636"; google_ad_width = 468; google_ad_height = 60;</script>
							<script type="text/javascript" src="squad.asp_files/show_ads.js"></script>

				    </div>

			    <div id="logo" style="text-align: center; margin: 0 2px 0 0;"><img src="squad.asp_files/logo_l.png" alt="Battrick" title="Battrick" width="250" height="71"><img src="squad.asp_files/logo_r.png" alt="" width="456" height="71"></div>
			    <div id="tickerbox"><script type="text/javascript">btDrawTicker();</script><div style="color: rgb(255, 246, 255);" id="ticker"><div class="ticker">BATTRICK ... IT'S MORE THAN JUST A GAME...</div></div></div>
			</div>
	  <script type="text/javascript" src="squad.asp_files/head.js"></script>

	  <script type="text/javascript">var serverClock = new Date(2011,8,7,17,0,51);</script>
	  <script type="text/javascript">
		  aTickerLines[0]="WELCOME TO BATTRICK!";
		  aTickerLines[1]="BATTRICK ... IT'S MORE THAN JUST A GAME...";
		  aTickerLines[2]="CRICKET HAS NEVER BEEN SO MUCH FUN";
	  </script>
	</div>
	</div>

  <div id="access"><a href="#page" title="Skip to content">Skip to content</a></div>
	<div id="menubarmarker"></div>
	<div style="position: relative;" id="menubarwrapper">

		<div id="menubar">
			<ul class="sf-js-enabled" id="topmenu">
				<li><a href="http://battrick.org/nl/news.asp">Main</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/news.asp" title="News about Battrick updates etc.">News</a></li>
						<li><a href="http://battrick.org/nl/prefs.asp" title="Set your site and game options">Preferences</a></li>
						<li><a href="http://battrick.org/nl/search.asp" title="Find players, clubs, matches and more">Search</a></li>
						<li><a href="http://battrick.org/nl/mail.asp" title="Check your BTmail">Mail</a></li>
						<li><a href="http://battrick.org/nl/btText.asp" title="Watch multiple live games at the same time">BT MultiView</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/public.asp?logoff=1" title="Log out of the game">Log Off</a></li>
					</ul>
				</li>
				<li class=""><a href="http://battrick.org/nl/office.asp" title="Your club pavilion">Club</a>
					<ul style="display: none; visibility: hidden;">
						<li class="submenu"><a href="http://battrick.org/nl/office.asp" title="Your club pavilion">Pavilion</a>

							<ul style="display: none; visibility: hidden;">

								<li><a href="http://battrick.org/nl/leagues.asp?leagueID=5930">FC: VI.22</a></li>

								<li><a href="http://battrick.org/nl/leagues.asp?leagueID=1106">OD: IV.6</a></li>
								<li><a href="http://battrick.org/nl/leagues.asp?leagueID=8809">BT20: VI.1008</a></li>
							</ul>

						</li>
						<li class="submenu"><a href="http://battrick.org/nl/squad.asp" title="Your squad of players">Squad</a>

							<ul style="display: none; visibility: hidden;">

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998761">Clyde Baliram</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=1058026">Kavith Beebi</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=434802">Brad Bishop</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998763">Rory Braam</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998760">Sol Breedt</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=4015657">Mo-mo Briscoe</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998769">Eugene Butts</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=4045972">Douglas Childs</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998771">Chris Day</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998762">Dom Dliza</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998773">Elvis Graves</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998768">Lemar Hendriks</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=910990">Tom Holloway</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998759">Shevron Houghton</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998764">Neil Larkin</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998770">Desmond Lorde</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998772">Zatiah Lumsdon</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=350905">Wayne Perry</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998765">Leonard Shannon</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998766">Anton Stott</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=2771004">Gary Tandy</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=1080445">Gaz Theobald</a></li>

								<li><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998767">Usman Urich</a></li>

							</ul>

						</li>
						<li><a href="http://battrick.org/nl/fixtures.asp" title="Details of upcoming matches and recent fixtures">Fixtures</a></li>
						<li><a href="http://battrick.org/nl/club.asp" title="Hire and fire backroom staff, general club info and access your youth academy">Club Info</a></li>
						<li><a href="http://battrick.org/nl/finances.asp" title="Check up on your weekly finances">Finances</a></li>
						<li><a href="http://battrick.org/nl/nets.asp" title="Assign your players to nets to train them up">Nets</a></li>
						<li><a href="http://battrick.org/nl/offers.asp" title="Offers made to and by you for players">Offers</a></li>
						<li><a href="http://battrick.org/nl/ground.asp" title="Expand your ground or change the pitch type">Ground</a></li>
						<li><a href="http://battrick.org/nl/challenges.asp" title="Accept or reject friendly game challenges">Challenges</a></li>
						<li><a href="http://battrick.org/nl/diary.asp" title="Your club's recent events">Diary</a></li>
					</ul>
				</li>
				<li class=""><a href="http://battrick.org/nl/country.asp">Global</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/transfers.asp" title="Search for the players up for sale">Transfer Market</a></li>
						<li><a href="http://battrick.org/nl/country.asp">Country Details</a></li>
						<!--<li><a href="testSeries.asp">Test Matches</a></li>-->
						<li><a href="http://battrick.org/nl/odiSeries.asp">ODI Matches</a></li>
						<li><a href="http://battrick.org/nl/wc.asp">World Cup</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/emigrate.asp">Emigration</a></li>
					</ul>
				</li>
				<li class=""><a href="http://battrick.org/nl/membership.asp">Membership</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/membership.asp" title="Find out what membership offers, and purchase membership for you or someone else">Details</a></li>

					</ul>
				</li>

				<li class=""><a href="http://battrick.org/nl/sledge.asp">Community</a>
					<ul style="display: none; visibility: hidden;">
						<li><a href="http://battrick.org/nl/sledge.asp">Sledging (Forums)</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/livechat.asp">Live Chat</a></li>
						<li><a href="http://battrick.org/nl/irc.asp">IRC Info</a></li>
						<li><a href="http://battrick.org/nl/logs.asp"><abbr title="Question and answer">Q&amp;A</abbr> Logs</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/blog.asp">Admin Blog</a></li>
						<li><a href="http://battrick.org/nl/focusgroup.asp">Focus Group</a></li>
						<li><a href="http://battrick.org/nl/bcc.asp">BT Cricket Council</a></li>
						<li><a href="http://battrick.org/nl/halloffame.asp">Hall of Fame</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/btshop.asp">Shop</a></li>
						<li><a href="http://battrick.org/nl/donations.asp" title="Donate to BT-Jargon">Donations</a></li>
						<!--<li><a href="competitions.asp">Competitions</a></li>-->
						<li><a href="http://battrick.org/nl/calendar.asp">Calendar</a></li>
						<li><a href="http://battrick.org/nl/online.asp">Online Users</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/commentary.asp">Commentary</a></li>
						<li><a href="http://battrick.org/nl/fantasy.asp">Fantasy WC</a></li>
						<li><a href="http://battrick.org/nl/cricketIRL.asp">Cricket Club Finder</a></li><!-- rename file to cricketclubs.asp -->
						<li><a href="http://battrick.org/nl/links.asp">Links</a></li>
					</ul>
				</li>

			    <li id="ie6sitemap"><a href="http://battrick.org/nl/sitemap.asp" title="Sitemap link for IE6 users">Sitemap</a></li>
				<li class=""><a href="http://battrick.org/nl/rules.asp">Help</a>
					<ul style="display: none; visibility: hidden;">
						<li class=""><a href="http://battrick.org/nl/rules.asp">Rules</a></li>
						<li><a href="http://battrick.org/nl/newbyguide.asp">Beginners Guide</a></li>
						<li><a href="http://battrick.org/nl/faq.asp">FAQ</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/contact.asp">Contact Us</a></li>
						<li><a href="http://battrick.org/nl/adminteam.asp">Admin team</a></li>
						<li><a href="http://battrick.org/nl/privacy.asp">Privacy</a></li>
						<li class="menusep"></li>
						<li><a href="http://battrick.org/nl/sitemap.asp">Sitemap</a></li>
						<li><a href="http://battrick.org/nl/history.asp">History</a></li>
						<li><a href="http://battrick.org/nl/about.asp">About</a></li>
					</ul>
				</li>    	<!-- etc. -->

			</ul>

			<div id="time" style="float:right;padding-right:5px;"><span title="17:01:15 on Wed 7th Sep 2011">17:01:15</span></div>

		</div><!-- menubar -->

	</div><!-- menubarwrapper -->

	<div id="page">
		<div id="leftcolumn">

    <div id="pagetitle"><a href="javascript:showTips('squad.asp');" class="tip"><img src="squad.asp_files/help.gif" alt="tip" width="12" height="12"></a><a href="http://battrick.org/nl/office.asp?userID=8288">Windward Triplehounds</a> ยป Squad</div>

			<div id="boxtop"></div>
            <div id="boxmiddle">

    <h3 id="squaddetails23players" class="subheadernew">Squad Details (23 Players)</h3>

	<div class="player" id="player_3998761">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998761">Clyde Baliram</a></span>
	     - <span class="player_age">28</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">1,406</span>, Wage=<span class="player_wage">ยฃ280</span>

        <img src="squad.asp_files/tl.gif" alt="transfer listed" title="This player has been transfer listed" width="16" height="16">

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(2,4)" class="level" title="Level 3 of 5">steady</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(1,4)" class="level" title="Level 2 of 5">cautious</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">M</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(5,6)" class="level" title="Level 5 of 10">mediocre</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(1,6)" class="level" title="Level 1 of 10">worthless</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(1,6)" class="level" title="Level 1 of 10">worthless</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_1058026">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=1058026">Kavith Beebi</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">15,497</span>, Wage=<span class="player_wage">ยฃ2,545</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(4,4)" class="level" title="Level 5 of 5">destructive</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(4,4)" class="level" title="Level 5 of 5">destructive</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">M</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(20,1)" class="level" title="Level 20 of 20">elite</a>
	    </span> experience. He has <span class="player_preference">no preference</span> but has a <span class="player_trait" title="These batsmen will be better at trying and give away the strike to higher skilled batsmen early in the over, and retaining it late in an over. And vice versa when batting with lower skilled batsmen.">Strike Controller</span> trait.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(4,5)" class="level" title="Level 4 of 10">feeble</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(9,1)" class="level" title="Level 9 of 20">strong</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(8,1)" class="level" title="Level 8 of 20">proficient</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(7,1)" class="level" title="Level 7 of 20">respectable</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_434802">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=434802">Brad Bishop</a></span>
	     - <span class="player_age">34</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">19,063</span>, Wage=<span class="player_wage">ยฃ3,738</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(2,4)" class="level" title="Level 3 of 5">steady</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(2,4)" class="level" title="Level 3 of 5">steady</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">H finger spin</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(8,6)" class="level" title="Level 8 of 10">proficient</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(20,1)" class="level" title="Level 20 of 20">elite</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(7,6)" class="level" title="Level 7 of 10">respectable</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(8,6)" class="level" title="Level 8 of 10">proficient</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(3,3)" class="level" title="Level 3 of 10">low</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(3,5)" class="level" title="Level 3 of 10">woeful</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(9,1)" class="level" title="Level 9 of 20">strong</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(8,1)" class="level" title="Level 8 of 20">proficient</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(9,1)" class="level" title="Level 9 of 20">strong</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998763">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998763">Rory Braam</a></span>
	     - <span class="player_age">18</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">6,841</span>, Wage=<span class="player_wage">ยฃ600</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a>
	    </span> experience. He <span class="player_preference" title="These players will perform slightly better on Green pitches, and to a much lesser extent, slightly worse on other pitch types.">favours Green Pitches</span> but has <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(7,6)" class="level" title="Level 7 of 10">respectable</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(8,6)" class="level" title="Level 8 of 10">proficient</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(6,3)" class="level" title="Level 6 of 10">fresh</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998760">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998760">Sol Breedt</a></span>
	     - <span class="player_age">22</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">1,258</span>, Wage=<span class="player_wage">ยฃ286</span>

        <img src="squad.asp_files/tl.gif" alt="transfer listed" title="This player has been transfer listed" width="16" height="16">

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(2,4)" class="level" title="Level 3 of 5">steady</a></span>
	    <span class="player_bathand">L</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(1,4)" class="level" title="Level 2 of 5">cautious</a></span>
	    <span class="player_bowlhand">L</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(4,6)" class="level" title="Level 4 of 10">feeble</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(1,6)" class="level" title="Level 1 of 10">worthless</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(2,6)" class="level" title="Level 2 of 10">abysmal</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(4,5)" class="level" title="Level 4 of 10">feeble</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_4015657">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=4015657">Mo-mo Briscoe</a></span>
	     - <span class="player_age">18</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">4,906</span>, Wage=<span class="player_wage">ยฃ644</span>

	    <br>
	    An
	    <span class="player_aggression"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">H finger spin</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(2,6)" class="level" title="Level 2 of 10">abysmal</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(1,5)" class="level" title="Level 1 of 10">worthless</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998769">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998769">Eugene Butts</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">8,134</span>, Wage=<span class="player_wage">ยฃ562</span>

	    <br>
	    An
	    <span class="player_aggression"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bathand">L</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bowlhand">L</span><span class="player_bowltype">H finger spin</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(4,6)" class="level" title="Level 4 of 10">feeble</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(7,1)" class="level" title="Level 7 of 20">respectable</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_4045972">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=4045972">Douglas Childs</a></span>
	     - <span class="player_age">19</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">3,378</span>, Wage=<span class="player_wage">ยฃ480</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bathand">L</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(1,4)" class="level" title="Level 2 of 5">cautious</a></span>
	    <span class="player_bowlhand">L</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(4,6)" class="level" title="Level 4 of 10">feeble</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a>
	    </span> experience. He <span class="player_preference" title="These players will perform slightly better on Uneven pitches, and to a much lesser extent, slightly worse on other pitch types.">favours Uneven Pitches</span> but has <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(6,3)" class="level" title="Level 6 of 10">fresh</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(3,5)" class="level" title="Level 3 of 10">woeful</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998771">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998771">Chris Day</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">5,235</span>, Wage=<span class="player_wage">ยฃ494</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(2,4)" class="level" title="Level 3 of 5">steady</a></span>
	    <span class="player_bathand">L</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(4,4)" class="level" title="Level 5 of 5">destructive</a></span>
	    <span class="player_bowlhand">L</span><span class="player_bowltype">M</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(3,6)" class="level" title="Level 3 of 10">woeful</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998762">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998762">Dom Dliza</a></span>
	     - <span class="player_age">25</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">2,674</span>, Wage=<span class="player_wage">ยฃ356</span>

        <img src="squad.asp_files/tl.gif" alt="transfer listed" title="This player has been transfer listed" width="16" height="16">

	    <br>
	    An
	    <span class="player_aggression"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(2,4)" class="level" title="Level 3 of 5">steady</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(6,6)" class="level" title="Level 6 of 10">competent</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(5,6)" class="level" title="Level 5 of 10">mediocre</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(1,6)" class="level" title="Level 1 of 10">worthless</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(4,5)" class="level" title="Level 4 of 10">feeble</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(7,1)" class="level" title="Level 7 of 20">respectable</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998773">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998773">Elvis Graves</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">11,150</span>, Wage=<span class="player_wage">ยฃ679</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(4,4)" class="level" title="Level 5 of 5">destructive</a></span>
	    <span class="player_bathand">L</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(4,4)" class="level" title="Level 5 of 5">destructive</a></span>
	    <span class="player_bowlhand">L</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(2,6)" class="level" title="Level 2 of 10">abysmal</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(5,6)" class="level" title="Level 5 of 10">mediocre</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(6,5)" class="level" title="Level 6 of 10">competent</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(7,1)" class="level" title="Level 7 of 20">respectable</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998768">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998768">Lemar Hendriks</a></span>
	     - <span class="player_age">18</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">6,226</span>, Wage=<span class="player_wage">ยฃ481</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(2,4)" class="level" title="Level 3 of 5">steady</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    an
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bowlhand">L</span><span class="player_bowltype">H finger spin</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(6,6)" class="level" title="Level 6 of 10">competent</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a>
	    </span> experience. He <span class="player_preference" title="These batsmen will perform slightly better against LH bowlers, and to a much lesser extent, slightly worse against RH bowlers.">favours LH Bowlers</span> but has <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(7,6)" class="level" title="Level 7 of 10">respectable</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_910990">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=910990">Tom Holloway</a></span>
	     - <span class="player_age">33</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">10,341</span>, Wage=<span class="player_wage">ยฃ1,962</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(1,4)" class="level" title="Level 2 of 5">cautious</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(1,4)" class="level" title="Level 2 of 5">cautious</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">H finger spin</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(1,6)" class="level" title="Level 1 of 10">worthless</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(6,3)" class="level" title="Level 6 of 10">fresh</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(4,5)" class="level" title="Level 4 of 10">feeble</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(8,1)" class="level" title="Level 8 of 20">proficient</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998759">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998759">Shevron Houghton</a></span>
	     - <span class="player_age">23</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">2,110</span>, Wage=<span class="player_wage">ยฃ352</span>

        <img src="squad.asp_files/tl.gif" alt="transfer listed" title="This player has been transfer listed" width="16" height="16">

	    <br>
	    An
	    <span class="player_aggression"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(2,4)" class="level" title="Level 3 of 5">steady</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(3,6)" class="level" title="Level 3 of 10">woeful</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(1,6)" class="level" title="Level 1 of 10">worthless</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(1,6)" class="level" title="Level 1 of 10">worthless</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(4,5)" class="level" title="Level 4 of 10">feeble</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(7,1)" class="level" title="Level 7 of 20">respectable</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998764">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998764">Neil Larkin</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">4,593</span>, Wage=<span class="player_wage">ยฃ483</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(7,6)" class="level" title="Level 7 of 10">respectable</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a>
	    </span> experience. He <span class="player_preference" title="These players will perform slightly better on Hard and Fast pitches, and to a much lesser extent, slightly worse on other pitch types.">favours Hard and Fast Pitches</span> but has <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(5,6)" class="level" title="Level 5 of 10">mediocre</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(3,6)" class="level" title="Level 3 of 10">woeful</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(6,5)" class="level" title="Level 6 of 10">competent</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998770">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998770">Desmond Lorde</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">4,787</span>, Wage=<span class="player_wage">ยฃ486</span>

	    <br>
	    An
	    <span class="player_aggression"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(4,4)" class="level" title="Level 5 of 5">destructive</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">F</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(4,6)" class="level" title="Level 4 of 10">feeble</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(7,6)" class="level" title="Level 7 of 10">respectable</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998772">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998772">Zatiah Lumsdon</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">7,582</span>, Wage=<span class="player_wage">ยฃ576</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(4,4)" class="level" title="Level 5 of 5">destructive</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(4,4)" class="level" title="Level 5 of 5">destructive</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a>
	    </span> experience. He <span class="player_preference" title="These players will perform slightly better on Uneven pitches, and to a much lesser extent, slightly worse on other pitch types.">favours Uneven Pitches</span> but has <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(4,6)" class="level" title="Level 4 of 10">feeble</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_350905">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=350905">Wayne Perry</a></span>
	     - <span class="player_age">35</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">11,522</span>, Wage=<span class="player_wage">ยฃ2,473</span>

	    <br>
	    An
	    <span class="player_aggression"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    an
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">H finger spin</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(6,6)" class="level" title="Level 6 of 10">competent</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(17,1)" class="level" title="Level 17 of 20">masterful</a>
	    </span> experience. He <span class="player_preference" title="These players will perform slightly better on Flat pitches, and to a much lesser extent, slightly worse on other pitch types.">favours Flat Pitches</span> but has <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(1,6)" class="level" title="Level 1 of 10">worthless</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(5,6)" class="level" title="Level 5 of 10">mediocre</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(2,5)" class="level" title="Level 2 of 10">abysmal</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(9,1)" class="level" title="Level 9 of 20">strong</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(9,1)" class="level" title="Level 9 of 20">strong</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998765">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998765">Leonard Shannon</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">3,325</span>, Wage=<span class="player_wage">ยฃ438</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">M</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(4,6)" class="level" title="Level 4 of 10">feeble</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(4,6)" class="level" title="Level 4 of 10">feeble</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(1,6)" class="level" title="Level 1 of 10">worthless</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998766">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998766">Anton Stott</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">4,567</span>, Wage=<span class="player_wage">ยฃ431</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(1,4)" class="level" title="Level 2 of 5">cautious</a></span>
	    <span class="player_bathand">L</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bowlhand">L</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(5,6)" class="level" title="Level 5 of 10">mediocre</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(8,6)" class="level" title="Level 8 of 10">proficient</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(6,3)" class="level" title="Level 6 of 10">fresh</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_2771004">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=2771004">Gary Tandy</a></span>
	     - <span class="player_age">23</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">12,390</span>, Wage=<span class="player_wage">ยฃ3,240</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(1,4)" class="level" title="Level 2 of 5">cautious</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(1,4)" class="level" title="Level 2 of 5">cautious</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">H wrist spin</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(8,1)" class="level" title="Level 8 of 20">proficient</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(6,3)" class="level" title="Level 6 of 10">fresh</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(3,5)" class="level" title="Level 3 of 10">woeful</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(7,1)" class="level" title="Level 7 of 20">respectable</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(9,1)" class="level" title="Level 9 of 20">strong</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_1080445">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=1080445">Gaz Theobald</a></span>
	     - <span class="player_age">34</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">11,671</span>, Wage=<span class="player_wage">ยฃ1,108</span>

	    <br>
	    An
	    <span class="player_aggression"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    an
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(3,4)" class="level" title="Level 4 of 5">attacking</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(8,6)" class="level" title="Level 8 of 10">proficient</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(16,1)" class="level" title="Level 16 of 20">exquisite</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(10,6)" class="level" title="Level 10 of 10">superb</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(7,6)" class="level" title="Level 7 of 10">respectable</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(1,5)" class="level" title="Level 1 of 10">worthless</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(7,1)" class="level" title="Level 7 of 20">respectable</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(8,1)" class="level" title="Level 8 of 20">proficient</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(7,1)" class="level" title="Level 7 of 20">respectable</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>

	<div class="player" id="player_3998767">
	<p>
	    <span class="player_shirtnumber"></span>
	    <span class="player_name"><a href="http://battrick.org/nl/playerdetails.asp?playerID=3998767">Usman Urich</a></span>
	     - <span class="player_age">31</span> yo,
	    <abbr title="Battrick">BT</abbr> Rating=<span class="player_btr">4,289</span>, Wage=<span class="player_wage">ยฃ440</span>

	    <br>
	    A
	    <span class="player_aggression"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bathand">R</span>H batsman and
	    a
	    <span class="player_aggressionbowl"><a href="javascript:showLevels(0,4)" class="level" title="Level 1 of 5">defensive</a></span>
	    <span class="player_bowlhand">R</span><span class="player_bowltype">FM</span> bowler.
	    He has
	    <span class="player_leadership"><a href="javascript:showLevels(4,6)" class="level" title="Level 4 of 10">feeble</a></span> leadership skills and
	    <span class="player_experience">
	    <a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a>
	    </span> experience. He has <span class="player_preference">no preference</span> and <span class="player_trait">no trait</span>.
	    <br>He currently has
	    <span class="player_batform"><a href="javascript:showLevels(8,6)" class="level" title="Level 8 of 10">proficient</a></span> batting form,
	    <span class="player_bowlform"><a href="javascript:showLevels(9,6)" class="level" title="Level 9 of 10">strong</a></span> bowling form and
	    <span class="player_fitness"><a href="javascript:showLevels(10,3)" class="level" title="Level 10 of 10">sublime</a></span> fitness.
	</p>



	<table>
        <tbody><tr>
		    <td class="skillname">Stamina:</td>
		    <td width="100"><span class="player_stamina"><a href="javascript:showLevels(5,5)" class="level" title="Level 5 of 10">mediocre</a></span></td>
		    <td class="skillname">Wicket Keeping:</td>
		    <td><span class="player_keeping"><a href="javascript:showLevels(1,1)" class="level" title="Level 1 of 20">worthless</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Batting:</td>
		    <td><span class="player_batting"><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></span></td>
		    <td class="skillname">Concentration:</td>
		    <td><span class="player_concentration"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Bowling:</td>
		    <td><span class="player_bowling"><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></span></td>
		    <td class="skillname">Consistency:</td>
		    <td><span class="player_consistency"><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></span></td>
		</tr>
		<tr>
		    <td class="skillname">Fielding:</td>
		    <td><span class="player_fielding"><a href="javascript:showLevels(3,1)" class="level" title="Level 3 of 20">woeful</a></span></td>
		    <td> </td>
		    <td> </td>
		</tr>
	</tbody></table>
	<br>

	</div>


            </div>

            <div id="boxbottom"></div>
        </div>

        <div id="rightmenu">

        	<div class="menusect">
    			<div class="menutitle">Options</div>
    			<div class="menuhead"></div>
    			<div class="menuitem"><a href="http://battrick.org/nl/teamplayerstats.asp?teamID=8288">Statistics</a></div>
    			<div class="menufoot"></div>
    		</div>

    <div class="menusect">
        <div class="menutitle">Sort by:</div>
        <div class="menuhead"></div>
        <div class="menuitem">
        <form id="sorder" method="post" action="squad.asp?userID=8288">
            <label for="orderby">Sort by:</label><br>
        	<select id="orderby" name="orderby">

        	    <option value="1">First name</option>
        	    <option value="2" selected="selected">Last name</option>
        	    <option value="3">Player ID</option>
        	    <option value="4">Age</option>
        	    <option value="21">Wage</option>
        	    <option value="5">Battrick Rating</option>

        	    <option value="12">Fitness Level</option>

            </select>


        	  <br><input name="submit" value="Sort" type="submit">
        	</form>
        </div>
        <div class="menuitem">&nbsp;</div>


        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998761">Clyde Baliram</a>
        <img src="squad.asp_files/tl-small.gif" alt="transfer listed" title="This player has been transfer listed" width="10" height="10">

        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=1058026">Kavith Beebi</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=434802">Brad Bishop</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998763">Rory Braam</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998760">Sol Breedt</a>
        <img src="squad.asp_files/tl-small.gif" alt="transfer listed" title="This player has been transfer listed" width="10" height="10">

        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=4015657">Mo-mo Briscoe</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998769">Eugene Butts</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=4045972">Douglas Childs</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998771">Chris Day</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998762">Dom Dliza</a>
        <img src="squad.asp_files/tl-small.gif" alt="transfer listed" title="This player has been transfer listed" width="10" height="10">

        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998773">Elvis Graves</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998768">Lemar Hendriks</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=910990">Tom Holloway</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998759">Shevron Houghton</a>
        <img src="squad.asp_files/tl-small.gif" alt="transfer listed" title="This player has been transfer listed" width="10" height="10">

        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998764">Neil Larkin</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998770">Desmond Lorde</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998772">Zatiah Lumsdon</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=350905">Wayne Perry</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998765">Leonard Shannon</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998766">Anton Stott</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=2771004">Gary Tandy</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=1080445">Gaz Theobald</a>
        </div>

        <div class="menuitem">
        <a href="http://battrick.org/nl/playerdetails.asp?playerID=3998767">Usman Urich</a>
        </div>


        <div class="menufoot"></div>
	</div>

    <div class="menusect">
        <div class="menutitle">Squad Averages</div>
    	<div class="menuhead"></div>
    	<div class="menuitem">
    	    <table id="squadaverages">
    	        <tbody><tr>
    	            <td class="skillname">Age:</td>
    	            <td>27.83 years</td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">BT Rating:</td>
    	            <td>7,085</td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Wages:</td>
    	            <td title="Amount may be slightly different to the amount on the finances page divided by the number of players you have, due to rounding">ยฃ1,006</td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Batting:</td>
    	            <td><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Bowling:</td>
    	            <td><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Keeping:</td>
    	            <td><a href="javascript:showLevels(2,1)" class="level" title="Level 2 of 20">abysmal</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Fielding:</td>
                    <td><a href="javascript:showLevels(4,1)" class="level" title="Level 4 of 20">feeble</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Stamina:</td>

    	            <td><a href="javascript:showLevels(4,5)" class="level" title="Level 4 of 10">feeble</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Concentration:</td>
    	            <td><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Consistency:</td>
    	            <td><a href="javascript:showLevels(5,1)" class="level" title="Level 5 of 20">mediocre</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Experience:</td>
    	            <td><a href="javascript:showLevels(6,1)" class="level" title="Level 6 of 20">competent</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Aggression:</td>
    	            <td><a href="javascript:showLevels(2,4)" class="level" title="Level 3 of 5">steady</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Batting Form:</td>
    	            <td><a href="javascript:showLevels(7,6)" class="level" title="Level 7 of 10">respectable</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Bowling Form:</td>
    	            <td><a href="javascript:showLevels(7,6)" class="level" title="Level 7 of 10">respectable</a></td>
    	        </tr>
    	        <tr>
    	            <td class="skillname">Fitness:</td>
    	            <td><a href="javascript:showLevels(9,3)" class="level" title="Level 9 of 10">energetic</a>
                    </td>
    	        </tr>

    	    </tbody></table>
    	</div>
    	<div class="menufoot"></div>
    </div>

    	    </div>

        </div>

    	<script type="text/javascript"><!--//--><![CDATA[//><!--
    	var scrarr = "crickileaks-1.gif", scrhref = "16";
    	//--><!]]></script>
    	<script type="text/javascript" src="squad.asp_files/jquery.js"></script>
<script type="text/javascript" src="squad.asp_files/menufloat.js"></script>
<script type="text/javascript" src="squad.asp_files/clock_bgiframe_superfish.js"></script>

    <script type="text/javascript"><!--//--><![CDATA[//><!--
    timeDiff(new Date(2011,8,7,17,0,51));
	//--><!]]></script>


</body></html>

Changes to lib/WWW/Battrick.pm.

1
2
3
4






























5


6
7
use strict;
use warnings;
package WWW::Battrick;































sub run {


}
1;




>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

>
>


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
use strict;
use warnings;
package WWW::Battrick;

use WWW::Battrick::Schema;
use WWW::Battrick::Site;
use Moose;

has schema => (
    is => 'ro',
    isa => 'DBIx::Class::Schema',
    lazy_build => 1,
);

sub _build_schema {
    my $self = shift;

    unless (opendir my $DIR, "$ENV{HOME}/.battrick") {
        mkdir "$ENV{HOME}/.battrick";
    }

    my $schema = WWW::Battrick::Schema->connect(
        "dbi:SQLite:$ENV{HOME}/.battrick/data.db"
    );

    eval {
        $schema->resultset('Player')->search->all;
    };
    $schema->deploy if $@;

    return $schema;
}


sub run {
    my ($user, $pass) = @_;
    WWW::Battrick::Site::login($user, $pass);
}
1;

Changes to lib/WWW/Battrick/Schema/Result/Finances.pm.

1
2
3


4
package WWW::Battrick::Schema::Result::Finances;
use base 'DBIx::Class::Core';



1;



>
>

1
2
3
4
5
6
package WWW::Battrick::Schema::Result::Finances;
use base 'DBIx::Class::Core';

__PACKAGE__->table('finances');

1;

Changes to lib/WWW/Battrick/Schema/Result/Fixtures.pm.

1
2
3











































4
package WWW::Battrick::Schema::Result::Fixtures;
use base 'DBIx::Class::Core';












































1;



>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package WWW::Battrick::Schema::Result::Fixtures;
use base 'DBIx::Class::Core';

__PACKAGE__->table('fixtures');


__PACKAGE__->load_components(
    qw/
          TimeStamp
          InflateColumn::DateTime::Duration
      /
  );

__PACKAGE__->add_columns(
    id  => {
        data_type => 'integer',
        is_nullable => 0,
        is_auto_increment => 1,
        default_value => '',
    },
    match_id => {
        data_type => 'integer',
        is_nullable => 0,
    },
    match_date => {
        data_type => 'datetime',
        is_nullable => 0,
    },
    match_type => {
        data_type => 'integer',
        is_nullable => 0,
    },
    friendly => {
        data_type => 'boolean',
        is_nullable => 1,
    },
    rival_id => {
        data_type => 'integer',
        is_nullable => 1,
    },
    venue => {
        data_type => 'string',
        is_nullable => 0,
    },
);

1;

Changes to lib/WWW/Battrick/Schema/Result/Ground.pm.

1
2
3


4
package WWW::Battrick::Schema::Result::Ground;
use base 'DBIx::Class::Core';



1;



>
>

1
2
3
4
5
6
package WWW::Battrick::Schema::Result::Ground;
use base 'DBIx::Class::Core';

__PACKAGE__->table('ground');

1;

Changes to lib/WWW/Battrick/Schema/Result/Player.pm.

1
2
3


























































































































4
package WWW::Battrick::Schema::Result::Player;
use base 'DBIx::Class::Core';



























































































































1;



>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
package WWW::Battrick::Schema::Result::Player;
use base 'DBIx::Class::Core';

__PACKAGE__->table('player');

__PACKAGE__->load_components(
    qw/
          TimeStamp
          InflateColumn::DateTime::Duration
      /
  );

__PACKAGE__->add_columns(
    id  => {
        data_type => 'integer',
        is_nullable => 0,
        is_auto_increment => 1,
        default_value => '',
    },
    player_id => {
        data_type => 'integer',
        is_nullable => 0,
    },
    name => {
        data_type => 'text',
        is_nullable => 0,
    },
    age => {
        data_type => 'integer',
        is_nullable => 0,
    },
    BT_rating => {
        data_type => 'integer',
        is_nullable => 0,
    },
    wage => {
        data_type => 'integer',
        is_nullable => 0,
    },
    transfer_listed => {
        data_type => 'boolean',
        is_nullable => 0,
    },
    transfer_listed => {
        data_type => 'boolean',
        is_nullable => 1,
    },
    agression_bat => {
        data_type => 'integer',
        is_nullable => 0,
    },
    batting_hand => {
        data_type => 'text',
        is_nullable => 0,
    },
    agression_bowl => {
        data_type => 'integer',
        is_nullable => 0,
    },
    bowling_hand => {
        data_type => 'text',
        is_nullable => 0,
    },
    agression_bowl => {
        data_type => 'integer',
        is_nullable => 0,
    },
    leadership => {
        data_type => 'integer',
        is_nullable => 0,
    },
    experience => {
        data_type => 'integer',
        is_nullable => 0,
    },
    preference => {
        data_type => 'text',
        is_nullable => 1,
    },
    trait => {
        data_type => 'text',
        is_nullable => 1,
    },
    bat_form => {
        data_type => 'integer',
        is_nullable => 0,
    },
    bowl_form => {
        data_type => 'integer',
        is_nullable => 0,
    },
    fitness => {
        data_type => 'integer',
        is_nullable => 0,
    },
    stamina => {
        data_type => 'integer',
        is_nullable => 0,
    },
    wicket_keeping => {
        data_type => 'integer',
        is_nullable => 0,
    },
    batting => {
        data_type => 'integer',
        is_nullable => 0,
    },
    bowling => {
        data_type => 'integer',
        is_nullable => 0,
    },
    concentration => {
        data_type => 'integer',
        is_nullable => 0,
    },
    consistency => {
        data_type => 'integer',
        is_nullable => 0,
    },
    fielding => {
        data_type => 'integer',
        is_nullable => 0,
    },
);

1;

Added lib/WWW/Battrick/Schema/Result/Rival.pm.

























































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package WWW::Battrick::Schema::Result::Rival;
use base 'DBIx::Class::Core';

__PACKAGE__->table('rival');

__PACKAGE__->add_columns(
    id  => {
        data_type => 'integer',
        is_nullable => 0,
        is_auto_increment => 1,
        default_value => '',
    },
    team_id => {
        data_type => 'integer',
        is_nullable => 0,
    },
    name => {
        data_type
    },
    ground => {
    },
    country => {
        data_type => 'integer',
        is_nullable => 0,
    },
    region => {
        data_type => 'integer',
        is_nullable => 0,
    },
    bot => {
        data_type => 'boolean',
        is_nullable => 1,
    },
    country_ranking => {
        data_type => 'integer',
        is_nullable => 1,
    },
    world_ranking => {
        data_type => 'integer',
        is_nullable => 1,
    },
);

1;

Added lib/WWW/Battrick/Site.pm.























































































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
use strict;
use warnings;
package WWW::Battrick::Site;

use WWW::Mechanize;

my $mech = WWW::Mechanize->new;
$mech->agent_alias('Linux Mozilla');
$mech->cookie_jar(HTTP::Cookies->new());

sub login {
    my ($user, $password) = @_;

    $mech->get( 'http://battrick.org/nl/public.asp' );

    return unless $mech->success;
    $mech->form_id('login');
    $mech->set_fields(
        username => $user,
        password => $password,
    );
    $mech->click;

    eval { $mech->get( "http://battrick.org/nl/squad.asp" ) };
    die 'error logging to battrick' if $@;
    foreach my $page (qw/office squad fixtures club finances nets ground/) {
        save_page($page);
        update_data($page);
    }
}

sub save_page {
    my $page = shift;
    $mech->get( "http://battrick.org/nl/$page.asp" );
    open my $TEMP, '>', $page || die "Error opening $page temp file - $!\n";
    print $TEMP $mech->content;
    close $TEMP;
}

sub update_data {
}

1;