<!-- Begin
// NOTE: If you use a ' add a slash before it like this \'
// THESE ARE SIDEBAR OPTIONS YOU CAN TURN ON AND OFF
var showarea_1		= "yes"		// SHOW THE 1ST PARAGRAPH
var showarea_2		= "no"		// SHOW THE 2ND PARAGRAPH
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

document.write('<img src="/images/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">Notes:</span></legend>');
document.write('<a href="/terms_conditions_advertiser.htm" class="sidelink2">Terms & Conditions</a><br><br>');
document.write('<a href="/privacy_policy.htm" class="sidelink2">Privacy Policy</a>');
document.write('</fieldset>');
document.write('<br>');
}

// END FIRST NOTES AREA


// 2ND NOTES AREA
   if (showarea_2 == "yes") {

document.write('<fieldset class="sidebarfield"><legend>');

document.write('<span class="sidebartitle">Optional Notes:</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="/images/spacer.gif" height="'+pageheight+'" width="130"><br>');

//  End -->