function sendMailTo(name, company, domain) {
    locationstring = 'mai' + 'lto:' + name + '@' + company + '.' + domain;
    window.location.replace(locationstring);
}

function updateCharsLeft(basic) {
    var left = 140;
    left = left - basic;

    if (document.getElementById('charsLeft')) {
        left = left - document.getElementById('msg').value.length;
        if (left < 0) {
            document.getElementById('charsLeft').style.color="#FF0000";
        } else {
            document.getElementById('charsLeft').style.color="#222222";
        }
        document.getElementById('charsLeft').innerHTML = left;
    }
}