<!-- ----------------------------------------------------------------------- -->
<!-- This is a general purpose script whose function is to "hide" street     -->
<!-- addresses on a web page.  The page will pass the variable (street)      -->
<!-- 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\street.js"> </Script>                              -->
<!--                                                                         -->
<!-- The script is, then, invoked, where needed in the <BODY> section via    -->
<!-- the following call:                                                     -->
<!--    street("street")                                                     -->
<!-- ----------------------------------------------------------------------- -->
<!-- Begin script
var street;


function street(street){
  document.write(street);
}
// End Script -->
