<!-- Begin

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

var color		= "e6edf8"	// HEADER BACKGROUND COLOR	E2E3DE
var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "15"		// DATE X LOCATION
var dateY		= "224"		// DATE Y LOCATION

var showphone		= "yes"		// SHOW THE phone number ON THE PAGE
var phoneLR		= "right"	// DATE LEFT OR RIGHT
var phoneX		= "15"		// DATE X LOCATION
var phoneY		= "115"		// DATE Y LOCATION		   

// COPYRIGHT 2007 © 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="5" border="0" width="100%" bgcolor="#'+color+'"><tr>');
document.write('<td align="left">');
document.write('<a href="index.html"><img src="images/logo.png" border="0"></a><br>');
document.write('</td></tr></table>');

// START phone number
if (showphone == "yes") { 
 
document.write('<div id="phone-location" style="'+phoneLR+': '+phoneX+'px; POSITION: absolute; TOP: '+phoneY+'px">');
document.write(' <span class="phone-font">(800) 327-4735</span>');	
document.write('</div>');
}

// START DATE SCRIPT
if (showdate == "yes") {
document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
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 -->
