// V 1.0

function WritePyroWarning()
{
	document.write(
		'<h2>' +
		'Warning' +
		'</h2>' +
		'<p>' +
		'<b>Never</b> do this anywhere where it would be unsafe or illegal in any way.' +
		'</p>' +
		'<p>' +
		'There are two things that any pyrotechnics enthusiast must have in mind at all times:' +
		'<ul>' +
		'  <li>' +
		'    Safety.' +
		'    <br />' +
		'    <br />' +
		'    Always be aware of safety and have it at the forefront of your mind.' +
		'    It is safety which keeps you and your audience alive to enjoy more pyrotechnics later.' +
		'    The two main safety issues are a devices safety features and an events safety precautions; plan and enact both of these carefully- your life depends on it.' +
		'    <br />' +
		'    <br />' +
		'  </li>' +
		'  <li>' +
		'    Legality.' +
		'    <br />' +
		'    <br />' +
		'    Always know the legal aspects of anything you do.' +
		'    This can save you from jail time, fines, confiscation of equipment, harrasement, and in extreme cases the disruption of your family, home, and your very life.' +
		'    Always be aware of any legal jurisdictions involved (city, county, state/province, federal, etc.) - they all apply all the time.' +
		'    <br />' +
		'    <br />' +
		'  </li>' +
		'</ul>' +
		'</p>'
		);
}
