
/**
 * $Id: site.js 76 2007-06-15 21:41:07Z orosz $
 *
 * This file is free software under the terms of the GNU General Public 
 * License (GPL).
 * Read the LICENSE file.
 *
 * @author      Ferenc Orosz, <franetic[_at_]gmx.de>
 * @copyright   (C) Ferenc Orosz
 * @license     http://www.gnu.org/licenses/gpl.html
 **/

// ------------------------------------------------------------------------

/*
 * @author: franetic[_at_]gmx.de
 * @modified: -
 */
function emailTo(un, dn, subject) {
    var addr = "";

    addr = "mailto:" + un + "@" + dn;
    if (subject != '') {
        addr += "?subject=" + subject;
    }

    document.location = addr;
}

