<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'


var sidewidth		= "10"		// SIDEBAR WIDTH (also edit CSS)
var pageheight		= "125"		// INCREASE PAGE HEIGHT

var notes1		= "no"		// SHOW 1ST NOTES
var notes2		= "no"		// SHOW 2ND NOTES

// TEMPLATE DATE

var showd		= "no"  	// SHOW THE DATE
var dateLR		= "right"  	// DATE LEFT OR RIGHT
var dateX		= "8"  	// DATE X LOCATION
var dateY		= "123"  	// DATE Y LOCATION


// FLASH CHANGER OPTIONS

var showsflash		= "no"		// SHOW FLASH IMAGE CHANGER
var flashcolor		= "E5E9F1"	// FLASH BACKGROUND COLOR
var flashwC		= "150"		// WIDTH OF THE FLASH CHANGER
var flashhC		= "125"		// HEIGHT OF THE FLASH CHANGER
var bordercolor		= "A49C98"	// FLASH CHANGER BOTTOM BORDER COLOR



}











// 1st NOTES AREA
   if (notes1 == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');

document.write('Notes Area<br>');

document.write('</td></tr><tr><td class="note-text">');

document.write('Edit this area with your own text and links. This text is in the global sidebar.js. Edit this file in a text editor to update all pages at one time.<br>');

document.write('<br><a href="contact.htm">Sample link &gt;&gt;</a><br>');

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











// 2nd NOTES AREA
   if (notes2 == "yes") {
document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="90%"><tr><td align="left" class="note-title">');

document.write('Notes Area<br>');

document.write('</td></tr><tr><td class="note-text">');

document.write('Edit this area with your own text and links. This text is in the global sidebar.js. Edit this file in a text editor to update all pages at one time.<br>');

document.write('<br><a href="contact.htm">Sample link &gt;&gt;</a><br>');

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







// START DATE SCRIPT


   if (showd == "no") {
document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px" class="printhide">');
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>');
}



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


//  End -->








































