<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

// THESE ARE SIDEBAR OPTIONS YOU CAN TURN ON AND OFF

var showimage_1		= "no"		// SHOW 1ST SIDEBAR IMAGE
var showarea_1		= "yes"		// SHOW THE 1ST PARAGRAPH
var showarea_2		= "no"		// SHOW THE 2ND PARAGRAPH
var showlinks		= "no"		// SHOW GALLERY LINKS
var movedown		= "2"		// SIDEBAR SPACE FROM TOP
var sidewidth		= "200"		// SIDEBAR WIDTH - ALSO EDIT THE CSS SIDEBAR WIDTH
var pageheight		= "150"		// ADD EXTRA HEIGHT TO ALL PAGES WITH A SIDEBAR

var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "14"		// DATE X LOCATION
var dateY		= "195"		// DATE Y LOCATION



document.write('<img src="picts/spacer.gif" height="'+movedown+'" width="'+sidewidth+'"><br>');




// 1ST NOTES AREA

   if (showarea_1 == "yes") {

document.write('<fieldset class="sidebarfield"><legend>');

document.write('<span class="sidebartitle">Performance:</span></legend>');


document.write('Next Practice:<br><br>');



document.write('Sunday, September 19, 2010, 2 - 5<br><br>');




//document.write('Drums at VFW<br><br>');

//document.write('Horns and Color Guard at the Gene Clock building, next to the VFW 2 - 4, then with Drums at VFW 4 - 5<br><br>');








// document.write('<a href="about.htm" class="sidelink">Click for more...</a>');

document.write('</fieldset>');

document.write('<br>');
}

// END FIRST NOTES AREA







// GALLERY LINKS  Can Use Whatever Links You Want


   if (showlinks == "yes") {
document.write('<span class="linkfont">');

document.write('<a href="gallery1.htm" class="sidelink">Gallery One</a><br>');
document.write('<a href="gallery2.htm" class="sidelink">Gallery Two</a><br>');
document.write('<a href="slideshow.htm" class="sidelink">Slide Show</a><br>');

document.write('</span>');
}











// IMAGE AREA

   if (showimage_1 == "yes") {
document.write('<br><TABLE cellpadding="0" cellspacing="0" border="0"><tr><td class="borders">');
document.write('<IMG SRC="picts/sidebar.jpg" border="0"><br>');
document.write('</td></tr></table><br>');
}






// 2ND NOTES AREA
   if (showarea_2 == "yes") {

document.write('<fieldset class="sidebarfield"><legend>');

document.write('<span class="sidebartitle">Optional Notes 2:</span></legend>');

document.write('This area is for notes or links. Edit the sidebar.js to update this text or switch this off. ');

document.write('<a href="about.htm" class="sidelink">Click for more...</a>');

document.write('</fieldset>');

document.write('<br><br>');
}
// END SECOND NOTES AREA





document.write('<img src="picts/spacer.gif" height="'+pageheight+'" width="130"><br>');



// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div class="date" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}




//  End -->