<!-- ----------------------------------------------------------------------- -->
<!-- This is a general purpose script whose function is to "hide" email      -->
<!-- addresses on a web page.  The page will pass the variables (user name,  -->
<!-- domain, and type) to the script for processing.                         -->
<!-- The script is loaded into the page via the following code in the <HEAD> -->
<!-- section of the page:                                                    -->
<!--    <Script Language="JavaScript" Type="Text/JavaScript"                 -->
<!--       Src="CMScripts\emhide.js"> </Script>                              -->
<!--                                                                         -->
<!-- The script is, then, invoked, where needed in the <BODY> section via    -->
<!-- the following call:                                                     -->
<!--    emhide("username","domainname","domainsuffix")                       -->
<!-- ----------------------------------------------------------------------- -->
<!-- Begin script
var area;
var prefix;
var num;

function phone(area, prefix, num){
  document.write(area+'-'+prefix+'-'+num);
}
// End Script -->
