function drawTextLinks(){
links = ''+
'<table cellpadding="0" cellspacing="0" border="0" width="100%">'+
'<tr><td bgcolor="#000099"><img src="/images/spacer.gif" width="1" height="1" alt="" border="0"></td></tr>'+
'<tr><td align="center">'+
'<a href="/index.html">Home</a>&nbsp;&nbsp;&nbsp;<a href="/products.html">Products</a>&nbsp;&nbsp;&nbsp;<a href="/branches.html">Branches</a>&nbsp;&nbsp;&nbsp;'+
'<a href="/news.html">Promotions</a>&nbsp;&nbsp;&nbsp;<a href="/history.html">History</a>&nbsp;&nbsp;&nbsp;<a href="/contact.html">Contact Us</a>&nbsp;&nbsp;&nbsp;'+
'<a href="tech.html">Tech Links</a>&nbsp;&nbsp;&nbsp;'+
//'<a href="/eserv/eclipse.ecl?FORMNAME=FX&TRACKNO=0">Order Online</a>'+
'</td></tr>'+
'<tr><td bgcolor="#000099"><img src="/images/spacer.gif" width="1" height="1" alt="" border="0"></td></tr>'+
'</table>';
document.write(links);
}

function drawLogin(){
login = ''+
//'<b>Online Ordering Coming Soon!</b>&nbsp;&nbsp;&nbsp;';
'<form action="/eserv/eclipse.ecl">'+
'<input type="hidden" name="FX" value="FX">'+
'<input type="hidden" name="PROCID" value="WEBPROC.WOE.AUTH">'+
'<input type="hidden" name="TRACKNO" value="0">'+
'<span class="trail">ONLINE ORDERING LOGIN:</span>&nbsp;&nbsp;<br>'+
'User ID:&nbsp;<input type="text" name="D1" size="10">&nbsp;&nbsp;&nbsp;&nbsp;'+
'Password:&nbsp;<input type="password" name="D2" size="10">&nbsp;&nbsp;'+
'<input type="submit" value="GO">&nbsp;&nbsp;</form>';
document.write(login);
}

function drawFooter(){
foot = ''+
'&nbsp;&copy; 2001 Nu-Lite | Contact <a href="\u006d\u0061\u0069\u006c\u0074\u006f\u003a\u0069\u006e\u0066\u006f\u0040\u006e\u0075\u006c\u0069\u0074\u0065\u002e\u0063\u006f\u006d">Webmaster</a><br>'+
'&nbsp;850 Edwards Ave. Harahan, LA. 70123'+
'<br><nobr>&nbsp;Phone: (800)256-1603  (504)733-3300  Fax: (504)736-1617</nobr>';
document.write(foot);
}

/*
 * sendmail.js
 * Invokes the browser's associated e-mail program using an obfuscated e-mail
 * address.
 * 
 * Usage:
 *   <a href="javascript:void(0)"
 *      onclick="return sendmail('\u0075\u0073\u0065\u0072')">send e-mail</a>
 *
 * Parameters:
 *  user (required)   - String representing the username of the recipient. A
 *                      string of Unicode characters is recommended.
 *  domain (optional) - String representing the domain name of the recipient.
 *                      
 *
 * Returns:
 *   false, to override default hyperlink behavior.
 *
 * Author:
 *   David Lindquist (http://www.gazingus.org)
 */
function sendmail(user, domain) {
  
  // protocol - mailto:
  var p = "\u006d\u0061\u0069\u006c\u0074\u006f\u003a";
  
  // usename
  var u = user;
  
  // domain name (host name sans machine name)
  var d = 'nulite.com'
	
  void(top.location = p + u + "\u0040" + d);
  return false;
}