﻿function SetLinks(id) {
    infos.GetInfos(id, InfoSucceed, InfoError)
}
function InfoSucceed(result) {
    document.getElementById("lblCellphone").innerHTML = result;
}
function InfoError(error) {
    document.getElementById("lblCellphone").innerHTML = "暂无";
}