/**********对联广告代码－开始**********/
var oDobAdv_Left = oDobAdv_Right = null;
var oDobAdv_W = 105;
var oDobAdv_h = 320;
var oDobAdv_R_Top = oDobAdv_L_Top = 90;
var oDobAdv_L_margin = 5;
var oDobAdv_R_margin = 5;

DobAdv_Init();

function DobAdv_Init()
{
    //对联广告
    var oDobAdv_L_Src = "http://www.whoyo.com.cn/images/kagou_dui2.jpg";
    var oDobAdv_R_Src = "http://www.whoyo.com.cn/images/jun_108x250.gif";
    var oDobAdv_L_Link = "http://www.whoyo.com.cn/one/index_1.htm";
    var oDobAdv_R_Link = "http://www.whoyo.com.cn/shop/jcardused.aspx";

    document.write('<div id="left_DobAdv" style="position:absolute;width:' + oDobAdv_W + 'px;height:' + oDobAdv_h + 'px;z-index:100;left:' + oDobAdv_L_margin + 'px;top:' + oDobAdv_L_Top + 'px;overflow:hidden;visibility:hidden;" onfocus="this.blur()"><img src="' + oDobAdv_L_Src + '" border="0" usemap="#Map_left_DobAdv"><map name="Map_left_DobAdv"> <area shape="rect" coords="0,0,106,17"  href="javascript:DobAdv_Show(false);void(0);" onfocus="this.blur()"><area shape="rect" coords="0,1,103,254" href="' + oDobAdv_L_Link + '" target="_blank" onfocus="this.blur()"></map><div style="cursor:hand" onclick=document.all.item("left_DobAdv").style.display="none">关闭</div></div>');
    document.write('<div id="right_DobAdv" style="position:absolute;width:' + oDobAdv_W + 'px;height:' + oDobAdv_h + 'px;z-index:100;left:' + oDobAdv_R_margin + 'px;top:' + oDobAdv_R_Top + 'px;overflow:hidden;visibility:hidden;" onfocus="this.blur()"><img src="' + oDobAdv_R_Src + '" border="0" usemap="#Map_right_DobAdv"><map name="Map_right_DobAdv"> <area shape="rect" coords="0,0,106,17"  href="javascript:DobAdv_Show(false);void(0);" onfocus="this.blur()"><area shape="rect" coords="0,1,103,254" href="' + oDobAdv_R_Link + '" target="_blank" onfocus="this.blur()"></map><div align=right style="cursor:hand" onclick=document.all.item("right_DobAdv").style.display="none">关闭</div></div>');

    oDobAdv_Left = document.getElementById("left_DobAdv");
    oDobAdv_Right = document.getElementById("right_DobAdv");

    DobAdv_Show(true);
    DobAdv_Resize();
}

function DobAdv_Show(s)
{
    oDobAdv_Left.style.visibility = oDobAdv_Right.style.visibility = s?"visible":"hidden";
}

function DobAdv_Resize()
{
    if(!oDobAdv_Left || !oDobAdv_Right) return;

    var ClientW = document.body.clientWidth;
    oDobAdv_Left.style.left = oDobAdv_L_margin;
    oDobAdv_Right.style.left = ClientW - oDobAdv_W - oDobAdv_R_margin;

    setTimeout("DobAdv_Resize()", 600);
}                                          
/**********对联广告代码－结束**********/