// write address in not ordinary way
function nspamem(emal1, emai2, title) {
    var tag2 = "lto:";
    var tag1 = "mai";
    var link = emal1 + '@' + emai2;
    document.write('<a hr' + 'ef=' + tag1 + tag2 + link + '>' + title + '</a>');
}

// Used in 'onclick' in 'Delete' buttons to ask for confirmation
// and to prevent robots from following the link and delete something.
function my_confirm(text, link) {
    var result = confirm(text);
    if ( result ) {
        document.location = link+'&confirmed='+'y';
    } 
    return false; // 'false' should be returned to prevent browser from
        // following the link instead of redirecting to the specified location.
}

// Used to prevent robots from following the link and ruin something.
function redirect(link) {
    document.location = link+'';
    return false; // 'false' should be returned to prevent browser from
        // following the link instead of redirecting to the specified location.
}
