// Utility functions for Makahiki Farms shopping page
// Copyright 2003-2004 Makahiki Farms.

function y2k(number)    { return (number < 1000) ? number + 1900 : number; }

function doCopyright()
{
	var today = new Date();
	document.write("Copyright &copy; 2002 - " + y2k(today.getYear()) + ". All Rights Reserved");
}

function doSideBar()
{
	document.write("  <p><img src='images/logo_creditCards_169x21.gif' width='169' height='21' /></p>" + 
	  "<p>Phone: 800-896-0350&nbsp;(toll free U.S. &amp; Canada) </p>" +
      "<p>Island of Hawaii: 808-323-2692<br /></p><p>email: ");
	  
		/*
		  Email Address Obfuscation: stellar web solutions 2006
		  For more web tools and utilities visit http://stellarwebsolutions.com/
		 */
		document.write('<A HREF=&#109;&#97;&#105;' + '&#108;&#116;&#111;&#58;' + '&#111;&#114;&#100;' + '&#101;&#114;&#64;&#109;&#97;&#107;&#97;&#104;&#105;&#107;&#105;&#102;&#97;&#114;&#109;&#115;&#46;&#99;&#111;&#109;>');
		document.write('&#111;&#114;&#100;' + '&#101;&#114;&#64;&#109;&#97;&#107;&#97;&#104;&#105;&#107;&#105;&#102;&#97;&#114;&#109;&#115;&#46;&#99;&#111;&#109;</A>');


	document.write('</p><p><a style="color:#996600;text-decoration:underline" href="privacy.htm">Privacy Policy</a></p>' +
      '<p><a href="shipping.htm">Tell me about shipping</a></p>');
}




