//footer file
//Copyright 2002
//The Solar Stop Internet Connection
//All Rights Reserved

document.write('<STYLE TYPE="text/css">A { text-decoration: underline; } A:link { color: #006666; } A:visited { color: #7777dd; } A:active { color: red; } A:hover { color: #bb5555; }</STYLE>');

var emailalias='enviro-healthinc.com';

var messagefooter='Enviro-Health, Inc. * 1690 Woodlands Road * Maumee, OH 43537';
var bar='images/bar.gif';
var neonbasecolor="#006666";
var neontextcolor="#bb5555";
var flashspeed=65;  //in milliseconds
var n=0, m, tempref;

function showfooter()
{
document.write('<center><img src="' + bar + '"><br><br><div style="font-family:arial, helvetica, sans-serif; font-size:12px; font-weight:normal; color:#006666; text-decoration:none"><b>');
if (document.all)
  {
  document.write('<font color="'+neonbasecolor+'">');
  for (m=0;m<messagefooter.length;m++)
    document.write('<span id="neonlight">'+messagefooter.charAt(m)+'</span>');
  document.write('</font>');

  //cache reference to neonlight array
  tempref=document.all.neonlight;
  }
else
  document.write(messagefooter);

beginneon();

document.write('<br><div style="font-family:arial, helvetica, sans-serif; font-size:11px; font-weight:normal; color:#006666; text-decoration:none">Phone: (419) 866-9783 * Fax: (419) 866-9817</b><br>E-mail: <a href="mailto:cbisesi@ix.netcom.com" onMouseOver="window.status=\'Send mail to Enviro-Health, Inc.\'; return true" onMouseOut="window.status=\'\'; return true">cbisesi@ix.netcom.com</a><br></div>');
document.write('<div style="font-family:arial, helvetica, sans-serif; font-size:10px; font-weight:normal; color:#006666; text-decoration:none">Copyright © 1998, 2002 <b>Enviro-Health, Inc.</b> All rights reserved.</div></div></center>');
}

function neon()
{

//Change all letters to base color
if (n==0)
  {
  for (m=0;m<messagefooter.length;m++)
    tempref[m].style.color=neonbasecolor;
  }

//cycle through and change individual letters to neon color
tempref[n].style.color=neontextcolor;

if (n<tempref.length-1)
  n++;
else
  {
  n=0;
  clearInterval(flashing);
  setTimeout("beginneon()",1500);
  return;
  }
}

function beginneon()
{
if (document.all)
  flashing=setInterval("neon()",flashspeed)
}

showfooter();