// Function to construct a mailto: link.  Pass in an array that contains the
// list of login names to be emailed.  For instance:
//
//      makeaddr(new Array('peterbf', 'zorrah')) ;
//

function makeaddr(logins) {
    document.write('<a href="mailto:'
                 + logins.join('@well.com,') + '@well.com'
                 + '">request entry<\/a>') ;
}
