/*
    savoerman.nl
    Copyright (C) Sander Voerman, 2006

    script/general.js
    JavaScript for all pages

*/

/*
    Writes an e-mail address.
*/
function sav_writeAddress(name, host, content, postfix) {
    document.write('<a href="mailto:' + name + '@' + host + '">'
        + ((content != '') ? content : (name + '@' + host))
        + '</a>' + postfix);
}

/*
    Writes an element tag.
*/
function sav_writeTag(element, isCloseTag) {
    document.write('<' + (isCloseTag ? '/' : '') + element + '>');
}

