// bottomTable
// JavaScript Document

var d = new Date();

var curr_date = d.getDate();

var curr_month = d.getMonth();

var curr_year = d.getFullYear();
document.write("<table width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" bgcolor=\"#FFFFFF\">");
  document.write("<tr>");
    document.write("<td colspan=\"2\" background=\"images/gray2.gif\" height=\"10\">&nbsp;</td>");
  document.write("</tr>");
  document.write("<tr>");
    document.write("<td class=\"gray\">");
      document.write("<img src=\"images/spacer.gif\" width=\"10\">clean<b>works</b>&reg; is a division of <a href=\"http://carrollco.com\" target=\"_blank\">Carroll Company&reg;</a><br>");
      document.write("<img src=\"images/spacer.gif\" width=\"10\">2900 West Kingsley Road, Garland,Tx 75041 | (800) 527-5722 | Fax: (972) 840-0678</td>");
    document.write("<td align=\"right\" class=\"copyr\">&copy; Carroll Company&reg;, 2007-" + curr_year + "<img src=\"images/spacer.gif\" width=\"10\"></td>");
  document.write("</tr>");
document.write("</table>")
