<!-- 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 flashcolor		= "FF6600"		// FLASH BACKGROUND COLOR
var color		= "FF6600"		// HEADER BACKGROUND COLOR
var flashheight		= "100"			// HEIGHT OF THE FLASH (IN PIXELS)
var flashwidth		= "600"			// WIDTH OF THE FLASH (IN PIXELS)

var showimage 		= "no"	 		// SHOW THE SMALL IMAGE ON THE HEADER RIGHT SIDE
var bordercolor		= "000000"		// SCROLLER AND IMAGE BORDER COLOR
var edge_distance	= "10"			// PLACE IMAGE FROM EDGE

var showdate		= "yes"			// SHOW THE DATE ON THE PAGE
var dateLR		= "right"		// DATE LEFT OR RIGHT
var dateX		= "11"			// DATE X LOCATION
var dateY		= "107"			// DATE Y LOCATION



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

// YOU DO NOT NEED TO EDIT BELOW THIS LINE

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#'+color+'"><tr><td ALIGN="left" VALIGN="top">');
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" id="logo" ALIGN="">');
document.write('<PARAM NAME=movie VALUE="logo.swf">');
document.write('<PARAM NAME=quality VALUE=high>');
document.write('<PARAM NAME=wmode VALUE=transparent>');
document.write('<PARAM NAME=bgcolor VALUE=#'+flashcolor+'>');
document.write('<EMBED src="logo.swf" quality=high wmode=transparent bgcolor=#'+flashcolor+'  WIDTH="'+flashwidth+'" HEIGHT="'+flashheight+'" NAME="logo" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
document.write('</EMBED>');
document.write('</OBJECT><br>');
document.write('</td><td align="right" valign="middle">');



// SMALL RANDOM PICTURE AREA

   if (showimage == "yes") {










document.write('<TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#'+bordercolor+'" style="border-collapse: collapse"><tr><td>')

var twox = "<a href=\"about.htm\"><img src=\"picts/";
var thrx = " width=\"100\" height=\"80\" border=\"0\">";
var forx = "";
var img = "";

forx += Math.floor(Math.random()*4);
img = forx;
if (img == "0") {
document.write(twox+ 'header_image1.jpg"' +thrx);
}
if (img == "1") {
document.write(twox+ 'header_image2.jpg"' +thrx);
}
if (img == "2") {
document.write(twox+ 'header_image3.jpg"' +thrx);
}
if (img == "3") {
document.write(twox+ 'header_image4.jpg"' +thrx);
}
document.write('</a><br>');
document.write('</td></tr></table>')



}
else {
document.write('<img src="picts/spacer.gif" width="10" height="10"><br>');
}
document.write('</td><td align="right" valign="middle" width="'+edge_distance+'">');
document.write('<img src="picts/spacer.gif" width="'+edge_distance+'" height="10"><br>');
document.write('</td></tr></table>');






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

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(d.getDate() + ". ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}



//  End -->