// Module version: 1.01.02

// This Software is Copyright James Downer. All Rights Reserved.
// Unauthorised use without permission is strictly prohibited.

	var ArRandTipsList = new Array();

	// To use double quotes, ensure it is escaped: \"my quoted text\" 

	ArRandTipsList[0]  = "<STRONG>Tip #1</STRONG><BR><BR>Always keep your gun pointing down range.<BR><BR>NEVER point a gun at anyone, whether it is loaded or not.";
	ArRandTipsList[1]  = "<STRONG>Tip #2</STRONG><BR><BR>When transporting your firearm(s) to and from the club, where applicable, avoid leaving the bolt seated in the gun.";
	ArRandTipsList[2]  = "<STRONG>Tip #3</STRONG><BR><BR>At the end of a shooting detail, allow the Range Conducting Officer (RCO) to inspect the open breech of the gun to ensure it is clear.<BR><BR>For muzzle loaders, ensure your plunging rod is fully inserted down the barrel.";
	ArRandTipsList[3]  = "<STRONG>Tip #4</STRONG><BR><BR>Always wait for clearance from the Range Conducting Officer (RCO) before beginning shooting.";
	ArRandTipsList[4]  = "<STRONG>Tip #5</STRONG><BR><BR>Always wait for clearance from the Range Conducting Officer (RCO) before leaving a firing point.";
	ArRandTipsList[5]  = "<STRONG>Tip #6</STRONG><BR><BR>When firing a rifle, remember to keep the butt of the gun \"tight\" against your shoulder, this will prevent the recoil of the gun injuring you - this is especially important with rifles that have telescopic sights, in order to avoid \"sniper eye\".";
	ArRandTipsList[6]  = "<STRONG>Tip #7</STRONG><BR><BR>If you have a problem with a firearm whilst shooting, place the gun flat in front of you, with the barrel pointing down range and call the Range Conducting Officer (RCO) for help.";
	ArRandTipsList[7]  = "<STRONG>Tip #8</STRONG><BR><BR>Remember to regularly clean and oil your firearm(s) properly.<BR><BR>A well maintained firearm will present far fewer problems, such as stoppages.";
	ArRandTipsList[8]  = "<STRONG>Tip #9</STRONG><BR><BR>Remember to transport your firearms to and from the club in a proper carrying case.";
	ArRandTipsList[9]  = "<STRONG>Tip #10</STRONG><BR><BR>Remember to always lock your firearms and ammunition away securely in your gun cabinet / safe at your residence after use.<BR><BR>NEVER allow anyone else to have access to your gun cabinet / safe keys.";
	ArRandTipsList[10] = "<STRONG>Tip #11</STRONG><BR><BR>Always use ear protection whilst shooting.";
	ArRandTipsList[11] = "<STRONG>Tip #12</STRONG><BR><BR>The maximum muzzle energy permitted for civilians shooting on MoD ranges is 4500J. If you home load, you must ensure your loads do not exceed this.";

	var szRT	  = ArRandTipsList.length;
	
	var randTipItem  = Math.round( Math.random() * ( szRT-1 ) );


	function displayRandomTip() {
		document.write( ArRandTipsList[randTipItem] );
	}





