<!--
//<EDA IGNORE>
//========================
//FISC Template V1.2
//© 2001, BLS Web Solutions
//========================

// Close BODY Content Table //
document.write('</TD></TR></TABLE>');
// Start Footer Table //
document.write('<div class="noprint">');
document.write('<TABLE width="98%" align="center">');
document.write('<TR>');
document.write('<TD class="footer" VALIGN="top" COLSPAN="3"><hr ALIGN=LEFT SIZE=1 NOSHADE WIDTH="100%">');
document.write('<TR>');
document.write('<TD class="footer" VALIGN="top" ALIGN="left" width="33%">eMail:&nbsp; <A class="small" href="javascript:contact()">Client Relations</a><br>Phone:&nbsp; <b>1-888-CARWRECK</b> or <b>1-800-460-8686</b><br>');

// Last Modified Script //////////////////////////////////////////////////////////////
function makeArray0() {
     for (i = 0; i<makeArray0.arguments.length; i++)
          this[i] = makeArray0.arguments[i];
}

var days = new makeArray0("Sunday","Monday","Tuesday","Wednesday",
    "Thursday","Friday","Saturday");

var months = new makeArray0('January','February','March',
    'April','May','June','July','August','September',
    'October','November','December');

function nths(day) {
     if (day == 1 || day == 21 || day == 31) return 'st';
     if (day == 2 || day == 22) return 'nd';
     if (day == 3 || day == 23) return 'rd';
     return 'th';
}

function getCorrectedYear(year) {
    year = year - 0;
    if (year < 70) return (2000 + year);
    if (year < 1900) return (1900 + year);
    return year;
}

function y2k(number) { return (number < 1000) ? number + 1900 : number; }

var last = document.lastModified;
var date = new Date(last);
var dateY2K = new Date(getCorrectedYear(date.getYear()),date.getMonth(),date.getDate());

document.write("Last Update: " + months[dateY2K.getMonth()] + " " +
    dateY2K.getDate() + nths(dateY2K.getDate()) + ", " +
    (y2k(dateY2K.getYear())) + "");

// End Last Modified ////////////////////////////////////////////////////////////////////////
document.write('</TD>');
document.write('<TD class="footer" ALIGN="right" width="33%"><A class="small" href="http://www.tonyowens.com">Tony Owens.com</a><br>© Copyright 1997 -');
document.write(' '+(y2k(dateY2K.getYear())) + "");
document.write('<br>All rights reserved.<BR></TD>');
document.write('</TABLE>');
document.write('</div>');
document.close();

function contact()
{
  mail_str = "mailto:pilawyer@sbcglobal.net" ;
  mail_str += "?subject=eMail From Your Web Site ";
  mail_str += "&body=Reference page: " + document.title;
  mail_str += " at: " + location.href; 
  location.href = mail_str;
}
//</EDA IGNORE>
//--