<!--
//  E-mail Address Printer
//  Copyright (C) 2002 Jason Crickmer
//  
//  This program is free software; you can redistribute it and/or modify
//  it under the terms of the GNU General Public License as published by
//  the Free Software Foundation; either version 2 of the License, or
//  (at your option) any later version.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//  GNU General Public License for more details.
//
//  You should have received a copy of the GNU General Public License
//  along with this program; if not, write to the Free Software
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
//  MA  02111-1307  USA.
//
//  The license is also available at http://www.gnu.org/licenses/gpl.txt
//

// $Id: email_address.js,v 1.1 2002/10/20 15:13:12 jason Exp $

// we require browser_detect.js!

/**
 * Return a string that contains my e-mail address, if this is a
 * browser that we recognize.
 */
function makeAddress() {
    var result = "";
    if (is_major >= 3) {
        result = result + "j";
        result = result + "a";
        result = result + "s";
        result = result + "o";
        result = result + "n";
        result = result + "@";
        result = result + "j";
        result = result + "e";
        result = result + "d";
        result = result + "i";
        result = result + ".";
        result = result + "n";
        result = result + "e";
        result = result + "t";
    }
    return result;
}

/**
 * Display a string that contains my e-mail address, if this is a
 * browser that we recognize.
 */
function displayAddress() {
    document.write(makeAddress());
    return;
}

// -->