function drawInfoPage()
{
	var page;
	var frame;
	
	page = "<div id=\"rules_div\">" +
		"<br />" +
		"Oval Road Odyssey is a simple premise, take a car designed " +
		"to turn left, stick it on a road course, and have fun :)" +
		"<br /><br />" +
		"Below are the few rules/regulations for this league:" +
		
		"<ul>" +		
			"<li id=\"rules_list\">" +
				"Races are approximately 30 minutes long, and start at  around 20:00 " +
				"GMT" +
			"</li>" +
			
			"<li id=\"rules_list\">" +
				"Before the race there is a 15 minute open qualifying and at least " +
				"an hour of practice" +
			"</li>" +
			
			"<li id=\"rules_list\">" +
				"Races are passworded, please don't give out the password to anyone, " +
				"if somebody who isn't registered here wants to race then ask them to " +
				"PM either Nigel Morrison or Joshua Harley for the password." +
			"</li>" +
			
			"<li id=\"rules_list\">" +
				"Although this is fun, 'Reckless' driving or any other unsportsmanship " +
				"like behaviour may  be punished with a ban." +
			"</li>" +
			
			"<li id=\"rules_list\">" +
				"Points will be awarded for 1st to 20th, with the following amounts:" +
				"<ul>" +
					"<li> 1st - 200</li>" +
					"<li> 2nd - 180</li>" +
					"<li> 3rd - 160</li>" +
					"<li> 4th - 140</li>" +
					"<li> 5th - 120</li>" +
					"<li> 6th - 100</li>" +
					"<li> 7th - 90</li>" +
					"<li> 8th - 80</li>" +
					"<li> 9th - 70</li>" +
					"<li>10th - 60</li>" +
					"<li>11th - 50</li>" +
					"<li>12th - 45</li>" +
					"<li>13th - 40</li>" +
					"<li>14th - 35</li>" +
					"<li>15th - 30</li>" +
					"<li>16th - 25</li>" +
					"<li>17th - 20</li>" +
					"<li>18th - 15</li>" +
					"<li>19th - 10</li>" +
					"<li>20th - 5</li>" +
					
				"</ul>" +
			"</li>" +
			
			"<li id=\"rules_list\">" +
				"Only the best 8 weeks count towards the standings." +
			"</li>" +
			
			"<li id=\"rules_list\">" +
				"And finally, League entry is free and there is no prize money, but " +
				"donations towards the running of the league are welcome and should " +
				"be sent to Nigel Morrison." +
			"</li>" +
		"</ul>" +

	"</div>";
	
	
	frame = document.getElementById("main_container");
	frame.innerHTML = page;
}