    <!-- Original copyright 2001 William Bontrager - WillMaster.com
    // Used with permission and modified to add a variable subject line argument and other features.
    // Copyright 2007 Gene Rodi - Webmaster for fellesraad.com
    
    function MAler(adrs, subj) {
    
        // Set up a relative expression to pick out the character that should be an @.
        RE = /^(.+)\*(.+)$/;
        
        // Build the subject line from constant text and the 2nd argument.
        if (subj != ""){
          subj = ' for ' + subj;
        };
        SubjectLine = "?subject=Inquiry from web site" + subj;
        
        // Build the mailto statement.
        Launch = adrs.replace(RE,"mailto:@no.more.spam$1@$2no.more.spam@" + SubjectLine);
        
        // Create a message with imbeded line-feeds.
        AlertMsg = "A note from the webmaster:" + '\n' + '\n' +
                          "    Please help us reduce spam by removing the text" + '\n' +
                          "                   @no.more.spam@" + '\n' +
                          "    from both ends of the 'To...' address" + '\n' +
                          "    before sending your message." + '\n' + '\n' +
                          "    Thanks!";
                          
        // Send the message to an info window.
        alert(AlertMsg);
        
        // Startup the mailto operation.
        window.location = Launch;
    }
    //-->

