
<!-- Begin


<!-- NOTE: If you use a ' add a slash before it like this \' -->

document.write('<TABLE cellpadding="0" cellspacing="0" border="0" width="100%" background="picts/buttonbar.gif"><tr><td align="right">');
document.write('<TABLE cellpadding="0" cellspacing="0" border="0">');
document.write('<tr><form action="index.html"><td>');
document.write('<input type="submit" value=" Home " onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></form><form action="about.htm"><td>');
document.write('<input type="submit" value=" About " onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></form><form action="locations.htm"><td>');
document.write('<input type="submit" value=" Locations " onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></form><form action="contact.htm"><td>');
document.write('<input type="submit" value="Contact Us" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></form><form action="sizefinder.htm"><td>');
document.write('<input type="submit" value="Size Finder" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');
document.write('</td></form><form action="storagetips.htm"><td>');
document.write('<input type="submit" value="Storage Tips" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');

<!-- COPY THE NEXT TWO LINES AND PASTE ABOVE THIS LINE TO ADD A BUTTON -->

// document.write('</td></form><form action="services.htm"><td>');
// document.write('<input type="submit" value="Services" onmouseover="this.className=\'buttonon\'" onmouseout="this.className=\'button\'" class="button"><br>');


document.write('</td></form><td>');
document.write('<td WIDTH="1">');
document.write('</td></tr></table>');
document.write('</td></tr></table>');

//  End -->

<!-- Begin Date and Phone Code

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS

var showdate		= "yes"		             // SHOW THE DATE ON THE PAGE
var dateLR		= "left"	             // DATE LEFT OR RIGHT
var dateX		= "15"		             // DATE X LOCATION
var dateY		= "99"		             // DATE Y LOCATION

var showphone		= "yes"		             // SHOW THE PHONE ON THE PAGE
var phoneLR		= "left"	             // PHONE LEFT OR RIGHT
var phoneX		= "15"		             // PHONE X LOCATION
var phoneY		= "6"		             // PHONE Y LOCATION
var phone               = "469.467.9373"             // PHONE NUMBER TO DISPLAY

// 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=\"clients\"><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>');

}


// START PHONE SCRIPT
   if (showphone == "yes") {

document.write('<div id="date-location" style="'+phoneLR+': '+phoneX+'px; POSITION: absolute; TOP: '+phoneY+'px">');
document.write("<span class=\"clients\"><font color=\"#FFFF00\"><nobr>" + phone + " ")
document.write("</nobr><br></span>")
document.write('</div>');

}

// -- END -->