<!-- Begin

// NOTE: If you use a ' add a slash before it like this \'

var color		= "ffffff"	// HEADER BACKGROUND COLOR
var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "158"		// DATE Y LOCATION

var showphone		= "yes"		// SHOW THE phone number ON THE PAGE
var phoneLR		= "right"	// DATE LEFT OR RIGHT
var phoneX		= "10"		// DATE X LOCATION
var phoneY		= "108"		// 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="0" border="0" width="100%" background="images/extender.jpg"><tr>');
document.write('<td valign="bottom" align="left"><span class="phone-font">24 Hour Emergency Service <br /><span class="phone-font">866-702-9100</span>');	

document.write('</td>');
document.write('<td align="right">');
document.write('<a href="index.html"><img src="images/head-bg.jpg" 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('</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 -->
