<!-- Begin HEADER OPTIONS CODE

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

// ONLY USE lowercase FOR ALL OPTIONS


// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

var showdate		= "no"		// SHOW THE DATE ON THE PAGE

var stripes1	 	= "yes"		// SHOW STRIPE UNDER THE FLASH (and adjust the menu.js)

var stripes2	 	= "no"		// SHOW STRIPE UNDER THE FLASH (and adjust the menu.js)
var stripes3	 	= "no"		// SHOW STRIPE UNDER THE FLASH (and adjust the menu.js)



// COPYRIGHT 2006 © Allwebco Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

 if (stripes1 == "yes") {
document.write('<span class="printhide">');
document.write('<img src="picts/stretchbar.jpg" width="100%" height="12"><br>');
document.write('</span>');
}

 if (stripes2 == "yes") {
document.write('<span class="printhide">');
document.write('<img src="picts/home.jpg" width="100%" height="80"><br>');
document.write('</span>');
}
   if (stripes3 == "yes") {
document.write('<span class="printhide">');
document.write('<img src="picts/stretchbar.jpg" width="100%" height="20"><br>');
document.write('</span>');

}

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



// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" 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>');

}


//  End -->
