function show_mail(location, username, domain)
{
    var str_mail = username + "@" + domain + "." + location;
    return str_mail;
}

