//联系店主
function contactWindow(siteMember, siteBook, shopId,shopName,userId,nickName,realName,phoneNum,mobile,areaName,address)
{
    var g_shopId = shopId;
    var g_shopName = shopName;
    var g_userId = userId;
    var g_nickName = nickName;
    var g_realName = realName;
    var g_phoneNum = phoneNum;
    var g_mobile = mobile;
    var g_areaName = areaName;
    var g_address = address;
    var g_sendMsg = '(<a href="'+ siteMember +'member/send_message.php?friendId='+userId+'" target="_blank">发消息</a>)';
    
    myForeWindow= new ForeWindow('contactDiv');
    document.getElementById("shopNameDiv").innerHTML = '<a href="'+ siteBook + shopId +'/" target="_blank">'+ g_shopName + '</a>';
    document.getElementById("realNameDiv").innerHTML = '<a href="'+ siteMember + userId +'/" target="_blank">'+ g_realName + '</a>';
    document.getElementById("nickNameDiv").innerHTML = '<a href="'+ siteMember + userId +'/" target="_blank">'+ g_nickName + '</a>';
    document.getElementById("phoneNum").innerHTML = g_phoneNum;
    document.getElementById("mobile").innerHTML = g_mobile;
    document.getElementById("areaName").innerHTML = g_areaName;
    document.getElementById("address").innerHTML = g_address;
    document.getElementById("sendMsgDiv").innerHTML = g_sendMsg;
    
    if(phoneNum != "")
    {
        document.getElementById("phoneNumDiv").style.display = "";
        document.getElementById("phoneNum").innerHTML = phoneNum;
    }

    if(mobile != "")
    {
        document.getElementById("mobileDiv").style.display = "";
        document.getElementById("mobile").innerHTML = mobile;
    }

    myForeWindow.show();
}

//显示店主相关信息的层
document.write('<div class="foreWindow" id="contactDiv" style="width:400px;">');
document.write('<div class="winTitlebar">店主相关信息：</div>');
document.write('<div class="winContent">');
document.write('<div >书店名称：<span  id="shopNameDiv"></span></div>');
document.write('<div >店主昵称：');
document.write('<span id="nickNameDiv" ></span>');
document.write('&nbsp;<span id="sendMsgDiv"></span>');
document.write('</div>');

document.write('<div >店主姓名：');
document.write('<span id="realNameDiv" ></span>');
document.write('</div>');

document.write('<div id="phoneNumDiv" style="display:none;">联系电话：');
document.write('<span id="phoneNum"></span>');
document.write('</div>');

document.write('<div id="mobileDiv" style="display:none;">手机：');
document.write('<span id="mobile"></span>');
document.write('</div>');

document.write('<div id="addressDiv">地址：');
document.write('<span id="areaName"></span>&nbsp;&nbsp;');
document.write('<span id="address"></span>');
document.write('</div>');

document.write('<input type="button" value="关 闭" onclick="myForeWindow.hide();"/>');

document.write('</div>');
document.write('</div>');
