var dayArray = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
var monthArray = new Array("January",
      "February",
      "March",
      "April",
      "May",
      "June",
      "July",
      "August",
      "September",
      "October",
      "November",
      "December");
var lastUpdate = new Date(document.lastModified);
var thisDay=dayArray[lastUpdate.getDay()];
var thisDate=lastUpdate.getDate() < 10 ? '0'+lastUpdate.getDate() : lastUpdate.getDate();
var thisMonth=monthArray[lastUpdate.getMonth()];
var thisMonthNum=lastUpdate.getMonth()+1 < 10 ? '0'+ (lastUpdate.getMonth()+1) : lastUpdate.getMonth()+1;
var thisFullYear=String(lastUpdate.getFullYear());
var thisYear= thisFullYear.charAt(2) + thisFullYear.charAt(3);


function link(link,name,who)
{
  var ender = " | ";
  if (who == 1) 
    ender = "";
  var display = "";
  display = "<a href=" + link + "><b><font face='Arial, Helvetica, sans-serif' size='2'>";
  display += name + "</font></b></a>" + ender;
  return(display);
}


document.writeln("<p></p><hr align=\"center\" width=\"600\">");
document.writeln("<table width='100%' border='0'>");
document.writeln("<tr>");
document.writeln("  <td>");
document.writeln("    <div align='center'>");
document.writeln("      <font face='Arial,Helvetica,sans-serif' color='#06029D'> ");
document.writeln("        <b>IndustrOzone Technologies, L.C.</b>");
document.writeln("        <br>");
document.writeln("        9650 Strickland Road");
document.writeln("        Suite 103-250");
document.writeln("        Raleigh, NC 27615");
document.writeln("        <br>");
document.writeln("        Phone: (800)736-1351  ||  Fax: (919)847-3677  ||  Email: ");
document.writeln("        <a href=\"mailto:industrozone@industrozone.com\">industrozone@industrozone.com</a>");
document.writeln("      </font>");
document.writeln("    </div>");
document.writeln("  </td>");
document.writeln("</tr>");
/**
document.writeln("<tr>");
document.writeln("  <td>");
document.writeln("    <div align='center'>");
document.writeln("      <font face='Arial,Helvetica,sans-serif' color='BLACK'>");
document.writeln("        The BrightEye name and logo are Trademarks of BrightEye Inc. ");
document.writeln("      </font>");
document.writeln("    </div>");
document.writeln("  </td>");
document.writeln("</tr>");
document.writeln("<tr>");
document.writeln("  <td>");
document.writeln("    <div align='center'>");
document.writeln("      <font face='Arial, Helvetica, sans-serif' color='BLACK'>");
document.writeln("        Copyright © 2002 BrightEye Inc. All rights reserved.");
document.writeln("      </font>");
document.writeln("    </div>");
document.writeln("  </td>");
document.writeln("</tr>");
*/
document.writeln("</table>");
document.write("<div align=\"center\">");
/**
document.write("<p>* Updated  ");
document.writeln(thisMonth + ' ' + thisDate + ', ' + thisFullYear+ '  '+ 	         lastUpdate.getHours()+':'+lastUpdate.getMinutes()+':'+lastUpdate.getSeconds() + " *</p>");

document.write("<p>" + 
	link("home.htm","Home")+ 
	link("faq.htm","FAQ")+ 
	link("info_pricing.htm","Info/Pricing")+
	link("order_info.htm","Order Info")+
	link("dealer_info.htm","Dealer Info")+
	link("contact_us.htm","Contact Us",1)+
	"</p><p></p></div>");
*/