﻿// JScript File
function DisplayMail(Server, Login, Display){   
    if ((Display.length == 0) || (Display.indexOf('@')+1)) {   
    document.write('<a href=' + '"mai' + 'lto:' + Login + '@' + Server + '">' + Login + '@' + Server + '<\/a>'); }   
    else  {   
    document.write('<a href=' + '"mai' + 'lto:' + Login + '@' + Server + '">' + Display + '<\/a>'); }   
}   



function showShare(strRowId) {
    //var shareDiv = document.getElementById("'" + strRowId + "'");
    var shareDiv = document.getElementById(strRowId);

    shareDiv.style.visibility = "visible";
}
function hideShare(strRowId) {

    //var shareDiv = document.getElementById("'" + strRowId + "'");
    var shareDiv = document.getElementById(strRowId);
    
    shareDiv.style.visibility = "hidden";
}
