﻿function CustomerPanle()
{
    var mydiv=document.createElement("div");
    mydiv.setAttribute("id","chenre_cuspanle");
    mydiv.style.position="absolute";
    mydiv.style.right="5px";
    mydiv.style.top="150px";
    mydiv.style.zIndex=1001;
    mydiv.innerHTML=" <div style=' width:22px; height:131px; background-image:url(http://www.chenre.cn/images/Customer/left.gif); float:left; font-size:0px;'>"
                +"<a href='javascript:void(0)' style='display:block;height:20px; width:20px;' onclick='CustomerPanleMaxAndMin(1)' onfocus='this.blur();'></a>"
                +"<a href='javascript:void(0)' style='display:block;height:20px; width:20px;' onclick='CustomerPanleMaxAndMin(2)' onfocus='this.blur();'></a>"
                +"<a href='javascript:void(0)' style='display:block;height:70px;margin-top:10px; width:20px;' onclick='CustomerPanleMaxAndMin(1)' onfocus='this.blur();'></a>"
                +"</div><div id='Customer_content' style='width:212px; height:386px; display:none; background-image:url(images/Customer/right.gif); font-size:0px;float:left;background-repeat:no-repeat'>"
                +"<div style='margin-top:40px;color:White;font-size:14px;'><div style='clear:both'></div>"
                +"<div style='height:30px; line-height:30px;'><div style='float:left; margin-top:35px; margin-left:22px;'><a target='_blank' href=' http://wpa.qq.com/msgrd?v=3&uin=1624016399&site=qq&menu=yes'><img border='0' src=' http://wpa.qq.com/pa?p=2:1624016399:41' alt='点击这里给我发消息' title='点击这里给我发消息'></a></div><div style='float:left; margin-top:35px; margin-left:17px;'><a target='_blank' href=' http://wpa.qq.com/msgrd?v=3&uin=1418362903&site=qq&menu=yes'><img border='0' src=' http://wpa.qq.com/pa?p=2:1418362903:41' alt='点击这里给我发消息' title='点击这里给我发消息'></a></div></div>"
                +"<div style='margin-top:89px; margin-left:3px; height:222px;overflow:hidden'><iframe width='207' height='225' frameborder='0' scrolling='no' src='http://widget.weibo.com/relationship/bulkfollow.php?language=zh_cn&uids=1847902344,2411606602&wide=0&color=C2D9F2,FFFFFF,0082CB,666666&showtitle=1&showinfo=1&sense=0&verified=1&count=5&refer='+encodeURIComponent(location.href)+'&dpc=1'></iframe></div>";
    document.body.appendChild(mydiv);
    window.setInterval(
                function()
                {
                    var mapBaseLine = -80;
                    var scrollToTop = document.documentElement.scrollTop - mapBaseLine;
                    if(scrollToTop < 0) scrollToTop = 0;
                    var currentTop = document.getElementById("chenre_cuspanle").style.top;
                    if(currentTop == "") 
                    {
                        currentTop = 0;
                    }
                    else
                    {
                        currentTop = parseInt(currentTop);
                    }
                    if(scrollToTop == currentTop) return;
                    var newTop = Math.floor((scrollToTop - currentTop) * 0.3 + 1) + currentTop;
                    if(Math.abs(newTop - currentTop) > Math.abs(scrollToTop - currentTop))
                    {
                        newTop = scrollToTop;
                    }
                    document.getElementById("chenre_cuspanle").style.top = (newTop)+"px";
                }
             , 40);
//    
//    var rw=document.createElement("div");
//    rw.setAttribute("id","chenre_renwu");
//    rw.style.position="absolute";
//    rw.style.left="5px";
//    rw.style.top="5px";
//    rw.style.zIndex=1002;
//    rw.innerHTML="<a href='http://www.chenre.cn/cr_mszyz.aspx' target='_blank'><img src='http://www.chenre.cn/images/chenre_zhentang.gif' alt='' style='border:0px;' /></a><a href='javascript:void(0)' onclick='closedivs()' style='display:block; left:84px;width:30px; position:relative;color:#cccccc; font-size:12px;'>关闭</a>"
//                    //+"<a href='http://www.chenre.cn/group_revert_topic.aspx?group_ID=23&topic_ID=5264&&Page=1' target='_blank' style='margin-top:60px; display:block;'><img src='images/celanguangao.jpg' alt='' style='border:0px; width:120px; ' /></a>"
//    document.body.appendChild(rw);
//     window.setInterval(
//                function()
//                {
//                    var mapBaseLine = -80;
//                    var scrollToTop = document.documentElement.scrollTop - mapBaseLine;
//                    if(scrollToTop < 0) scrollToTop = 0;
//                    var currentTop = document.getElementById("chenre_renwu").style.top;
//                    if(currentTop == "") 
//                    {
//                        currentTop = 0;
//                    }
//                    else
//                    {
//                        currentTop = parseInt(currentTop);
//                    }
//                    if(scrollToTop == currentTop) return;
//                    var newTop = Math.floor((scrollToTop - currentTop) * 0.3 + 1) + currentTop;
//                    if(Math.abs(newTop - currentTop) > Math.abs(scrollToTop - currentTop))
//                    {
//                        newTop = scrollToTop;
//                    }
//                    document.getElementById("chenre_renwu").style.top = (newTop)+"px";
//                }
//             , 40);
}
function CustomerPanleMaxAndMin(type)
{
    if(type==1)
    {
        document.getElementById("Customer_content").style.display="block";
    }
    else
    {
        document.getElementById("Customer_content").style.display="none";
    }
}
function closedivs(){document.getElementById("chenre_renwu").style.display="none";}
if (window.addEventListener)
{
    window.addEventListener("load", CustomerPanle, false);
}
else if (window.attachEvent)
{
    window.attachEvent("onload", CustomerPanle);
}
else
{
    window.onload=CustomerPanle;
}
