<!-- Begin

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS




var hope		 	= "yes"		// SHOW THE 1ST PARAGRAPH
var newsletter		= "yes"		// SHOW THE LATEST NEWSLETTER SECTION
var news 			= "yes"		// SHOW THE 2ND PARAGRAPH
var showimage		= "yes"		// SHOW A SIDEBAR IMAGE

var topspacing		= "2"		// NUDGE SIDEBAR DOWN
var sidewidth		= "125"		// SIDEBAR WIDTH





// NUDGE SPACER
document.write('<img src="picts/spacer.gif" height="'+topspacing+'" width="'+sidewidth+'"><br>');

document.write('<table cellpadding="5" cellspacing="10" border="0" class="sidebartext-right"><tr><td>');


   if (news == "yes") {

document.write('<fieldset><legend>');

document.write('Latest News<br></legend>');

document.write('<br>');
document.write('<center><b>Broken Arrow Ranch Fundraiser!</b></center>');
document.write('<br>');

document.write('Accepting donations of horse related items. <a href="news.htm">Click here</a> for more details.');

document.write('<br>');

document.write('<br>');

document.write('Feel free to print out our <a href="docs/flyers/Broken Arrow Ranch Fundraiser-1.pdf" target="_blank">Fundraiser Flyer</a> and share it with friends!');

document.write('<br>');
document.write('</fieldset>');
document.write('<br>');

}



// SMALL PICTURE AREA

   if (showimage == "yes") {

document.write('<br><center>');
document.write('<a href="index.html"><img src="picts/charlie_friend.jpg" border="0" class="borders"></a><br>');
document.write('</center>');
document.write('<br><br>');
}




   if (newsletter == "yes") {

document.write('<fieldset><legend>');

document.write('Newsletter<br></legend>');

document.write('Read some stories and the latest news.  Get our current  <a href="docs/newsletters/latest_newsletter.pdf" target="_blank">Newsletter here.</a><br>');

document.write('</fieldset>');
document.write('<br>');

}



   if (hope == "yes") {

document.write('<fieldset><legend>');

document.write('Hope<br></legend>');

document.write('To see how you can help, check out our <a href="hope_list.htm">Hope List here.</a><br>');

document.write('</fieldset>');
document.write('<br>');

}









document.write('</td></tr></table>');


// -- END -->