function ProtektuRetadreson(komenco, fino, teksto) {
    document.write( '<a href="mailto:' + komenco + '@' + fino + '">' );
    if (teksto == "") {
    	document.write( ''+ komenco + '@' + fino + '' );
    } else {
        teksto = teksto.replace("&lt;", "<");
        teksto = teksto.replace("&gt;", ">");
        document.write( ''+ teksto +'' );
    }
    document.write( '</a>' );
}

function eksterajLigiloj() {
    if (!document.getElementsByTagName) return;
    var anchors = document.getElementsByTagName("a");
    for (var i=0; i < anchors.length; i++) {
        if (anchors[i].getAttribute("href") && anchors[i].getAttribute("rel") == "ekstera") {
            anchors[i].target = "_blank";
        }
    }
}

function ricevuParametron(nomo){
    var Parameteroj = location.search.substring(1).split("&");
    var variablo = "";
    for (var i = 0; i < Parameteroj.length; i++){
        if (Parameteroj[i].split("=")[0] == nomo){
            if (Parameteroj[i].split("=").length > 1) variablo = Parameteroj[i].split("=")[1];
            return variablo;
        }
    }
    return "en";
}

window.onload = eksterajLigiloj;