﻿if (CURASO == undefined) var CURASO = {};

/* 
*    mailto - hiding emails from spammers
******************************************/
CURASO.mailto = function (id, email) {

    var elem = $('#' + id);
    if (elem.length > 0) {

        var mailto = "mailto:" + email;
        elem.html('<a href="' + mailto + '">' + email + '</a>');

    }

    //   var spanobj = document.getElementById("mailTo");
    //   var anch = document.createElement("a");
    //   var email = "recipient@website.com";
    //   var mailto = "mailto:" + email;
    //   anch.setAttribute("href",mailto);
    //   spanobj.appendChild(anch);
    //  var txt = document.createTextNode(email);
    //  anch.appendChild(txt);


}
