// File: footer.js
// Developed by DecaTech Solutions, Inc.
// last modified: 03/16/2010

// Text Links to main pages
var footer1="<div align=\"center\"> \
<a href=\"http://www.decatech.com/\">Home</a> \| \
<a href=\"http://www.decatech.com/services/\">Services</a> \| \
<a href=\"http://www.decatech.com/portfolio/\">Portfolio</a> \| \
<a href=\"https://secure.decatech.com/clients/\">Clients</a> \| \
<a href=\"http://www.decatech.com/support/\">Support</a> \| \
<a href=\"http://www.decatech.com/about.html\">About Us</a> \| \
<a href=\"http://www.decatech.com/contact/\">Contact Us</a> \
</div>";

// Email
var footer2="<P><div align=\"center\"> \
<font face=\"Arial, Helvetica, sans-serif\" size=\"1\">Contact us at: ";
var hostname = "decatech.com";
var username = "info";
var linktext = username + "@" + hostname;
var footer3="</font>";

document.write(footer1);
document.write(footer2);
document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + linktext + "</a>");
document.write(footer3);