<!--
//For hiding email addresses
   // lhs = left hand side, rhs = right hand side
        function printMailToLink(name, lhs, rhs, type)
        {
	  if (type == "subject") 
	  {
	  	document.write("<" + "A HREF=\"mailto" + ":" + lhs + "@" +
rhs + "\"?subject='Special Price'>");
		document.write(name);
          else
          	document.write("<" + "A HREF=\"mailto" + ":" + lhs + "@" +
rhs + "\">");
	  }
          if (type == "full") {
            document.write(name + " - &lt;" + lhs + "@" + rhs + "&gt;");
          }
          if (type == "name") {
            document.write(name);
          }

          if (type == "address") {
            document.write(lhs + "@" + rhs);
          }
          document.write("<" + "/a" + ">");
        }
//-->


