<!-- Begin
// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON
// ONLY USE lowercase FOR ALL OPTIONS
var paragraph_1 	= "no"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "no"		// SHOW THE 2ND PARAGRAPH
var links 			= "yes"		// SHOW THE LINKS AREA
var showimage		= "no"		// SHOW A SIDEBAR IMAGE
var topspacing		= "10"		// NUDGE SIDEBAR DOWN
var sidewidth		= "125"		// SIDEBAR WIDTH

// NUDGE SPACER
//document.write('<img src="http://lukebaggenstos.com/picts/spacer.gif" height="'+topspacing+'" width="'+sidewidth+'"><br>');
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>');

// START RIGHT SIDEBAR AREA PARAGRAPH 1 EDIT THIS AREA
   if (paragraph_1 == "yes") {
document.write('<fieldset><legend>');
document.write('News<br></legend>');
document.write('Stepan becomes the first Black Russian Terrier to win a Best in Show in Canada at Campbell River Dog Fanciers Society under Judge Mrs. Terry Carter! <br>');
document.write('</fieldset>');
document.write('<br><br>');
}
// END RIGHT SIDEBAR AREA PARAGRAPH 1

// SMALL PICTURE AREA
   if (showimage == "yes") {
document.write('<br><center>');
document.write('<a href="index.html"><img src="picts/sidebar-right.jpg" border="0" class="borders"></a><br>');
document.write('</center>');
document.write('<br><br>');
}

// START RIGHT SIDEBAR AREA PARAGRAPH 2 EDIT THIS AREA
   if (paragraph_2 == "yes") {
document.write('<fieldset><legend>');
document.write('Notes Area<br></legend>');
document.write('You can also turn off this area in the sidebar-right.js and have no right side bar showing in this area.<br>');
document.write('</fieldset>');
document.write('<br><br>');
}
// END RIGHT SIDEBAR AREA PARAGRAPH 2

// LINKS AREA
   if (links == "yes") {
document.write('<fieldset><legend>');
document.write('Useful Links<br></legend>');
document.write('<a href="http://www.akc.org">American Kennel Club</a><br><br>');
document.write('USA<br>');
document.write('- <a href="http://www.onofrio.com">Onofrio Dog Shows</a><br>');
document.write('- <a href="http://www.infodog.com">INFO Dog</a><br>');
document.write('- <a href="http://barayevents.com" target="_blank">Baray Events</a><br>');
document.write('- <a href="http://rogersdogshows.com" target="_blank">Rogers Dog Shows</a><br>');
document.write('<br>Canada<br>');
document.write('- <a href="http://westerndogshows.com" target="_blank">Western Dog Shows</a><br>');
document.write('<br><br>');
document.write('<a href="http://www.rowannj.com/" target="_blank">Rowan\'s Web Site</a><br>');
document.write('</fieldset>');
document.write('<br><br><br>');
}
// END LINKS AREA

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