// ONLY USE lowercase FOR ALL OPTIONS


// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON


var paragraph_1 	= "yes"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "yes"		// SHOW THE 2ND PARAGRAPH
var paragraph_3 	= "no"		// SHOW THE 3ND PARAGRAPH

// PARAGRAPH 1 EDIT AREA

   if (paragraph_1 == "yes") {

document.write('It is a great day to be fire safe!!!')
document.write('</span><br><br>')

}
// END PARAGRAPH 1



// PARAGRAPH 2 EDIT AREA

   if (paragraph_2 == "yes") {

document.write('Upcoming Events:')

document.write('<br></span><span>')

document.write('Vacation Fire School')

document.write('<br></span><span>')

document.write('Safe Sitter Classes')

document.write('<br></span><span>')

document.write('Call Station 41')

document.write('<br></span><span>')

document.write('For Details')

document.write('<br></span><span>')

document.write('(928) 634-2741')

document.write('<br></span><span>')

document.write('<br></span><span>')

document.write('Maintain a defensible space around your home!')

document.write('Keep vegetation and combustibles clear')

document.write('a 30 ft radius around your home this wildfire ')

document.write('season.')

document.write('</span><br><br>')

}
// END PARAGRAPH 2


// PARAGRAPH 3 EDIT AREA

   if (paragraph_3 == "yes") {


document.write('Heating Without Getting Burned ')

document.write('<br></span><span>')

document.write('<br></span><span>')

document.write('Place all space heaters at least three feet from furniture ')

document.write(' walls, curtains or anything else that could catch fire. ')

document.write('Turn off space heaters when you ')

document.write('leave home or go to bed.')

document.write('</span><br><br>')

}
// END PARAGRAPH 3



