<!--
// browser test:
//-----------------------------------------------------------
// 
// get_address_string
//
// Yes, this looks painstakingly obvious, but the more you
// spread the info out, the harder it is for spambots to
// harvest an email address!!!
//
//-----------------------------------------------------------
function get_address_string(name, mailto)
{
   sAt = "@";
   sExtension = ".com";
   sHost = "twixwood";

   str = "";
   if (mailto == "t")
      str = "mailto: ";

   str = str 
    + name 
    + sAt 
    + sHost 
    + sExtension;

   return(str);
}


//-----------------------------------------------------------
// 
// get_email
//
//-----------------------------------------------------------
function get_email(name)
{
   str = get_address_string(name, "t");
   return(str);
}

//-----------------------------------------------------------
// 
// show_email
//
//-----------------------------------------------------------
function show_email(name)
{
   str = get_address_string(name, "f");
   document.write(str);
}

//-----------------------------------------------------------
// 
// status_email
//
//-----------------------------------------------------------
function status_email(name)
{
   window.status = get_address_string(name, "t");
   return(true);
}
// -->
