﻿//Copyright : AT Integrated Inc - 2009
//License   : Free to use as long as above copyright line is present
function sendMailTo() {
    try {
        var sEmail = "";
        for (var i = 0; i < arguments.length; i++)
            sEmail += String.fromCharCode(parseInt(arguments[i]) + 80);

        if (sEmail == "")
            return;
        locationstring = 'mai' + 'lto:' + sEmail;
        window.location.replace(locationstring);
    }
    catch (e) {
        ;
    }
}
