<!-- Begin
 
 // NOTE: If you use a ' add a slash before it like this \'
 
 
 var showimage_1		= "yes"		// SHOW 1ST SIDEBAR IMAGE
 var showimage_2		= "yes"		// SHOW 2ND SIDEBAR IMAGE
 var showimage_3		= "yes"		// SHOW 3RD SIDEBAR IMAGE
 var showarea_1		= "yes"		// SHOW THE 1ST PARAGRAPH
 var showarea_2		= "yes"		// SHOW THE 2ND PARAGRAPH
 var showarea_3		= "yes"		// SHOW AN OPTIONAL 3RD PARAGRAPH FOR SOUND 5 - 8
 var showarea_4		= "no"		// SHOW THE 4TH PARAGRAPH WITH TEXT
 var showarea_5		= "no"		// SHOW THE 5TH PARAGRAPH WITH TEXT
 var noteborder		= "#FCBA65"	// BORDER COLOR AROUND THE NOTES
 
 
 document.write('<TABLE cellpadding="5" cellspacing="0" width="100%" border="0" class="sidebartext"><tr><td valign="top" align="center">');
 
 
 // START AREA 1
    if (showarea_1 == "yes") {
    if (showimage_1 == "yes") {
 document.write('<IMG SRC="picts/sidebar-1.jpg" border="0" width="175" height="131" class="borders"><br><br>');
 }
 
 
 
 // NOTE: copy and paste the next line below itself to add a new link
 
 
 document.write('<br><br>');
 }
 // END AREA 1
 
 
 
 
 
 // START AREA 2
    if (showarea_2 == "yes") {
    if (showimage_2 == "yes") {
 document.write('<IMG SRC="picts/sidebar-2.jpg" border="0" width="175" height="174"><br><br>');
 }
 
 document.write('<br>');
 
 }
 // END AREA 2
 
 
 
 
 
 // START AREA 3
    if (showarea_3 == "yes") {
    if (showimage_3 == "yes") {
 document.write('<IMG SRC="picts/commercial1_001.jpg" border="0" width="175" height="141" class="borders"><br><br>');
 }
 
 document.write('<a href="video.htm" class="sidebarlinks">Click to see Commercial</a><br>');
 
 
 // NOTE: copy and paste the next line below itself to add a new link
 
 
 document.write('<br><br>');
 }
 // END AREA 3
 
 
 
 
 
 // START AREA 4
    if (showarea_4 == "yes") {
 
 document.write('<fieldset style="border: #'+noteborder+' 1px solid; text-align:left; width:125px; padding: 5px;"><legend>');
 document.write('<span class="subtitle">Wellslands<br>Rottweilers</span></legend>');
 
 document.write('Coming soon!');
 
 document.write('</fieldset>');
 
 document.write('<br><br>');
 }
 // END AREA 4
 
 
 
 
 
 // START AREA 5
    if (showarea_5 == "yes") {
 
 document.write('<fieldset style="border: #'+noteborder+' 1px solid; text-align:left; width:125px; padding: 5px;"><legend>');
 document.write('<span class="subtitle">OPTIONS:</span></legend>');
 
 document.write('This optional second notes area can be switched on or off in the sidebar.js.<br>');
 
 document.write('</fieldset>');
 
 document.write('<br><br>');
 }
 // END AREA 5
 
 
 
 
 document.write('</td></tr></table>');
 //  End -->