﻿var isIE6=false;   
document.write("<!--[if lte IE 6]><script>isIE6=true;</scr"+"ipt><![endif]-->");

var swindleTipString = escape("打击网络诈骗 共建和谐社会");
var imgSite="http://www.nettop.cn/";

var tipDiv = document.createElement("div");
tipDiv.id="tip";
tipDiv.style.width="285px";
if(isIE6)
{
    tipDiv.style.position="absolute";
}
else
{
    tipDiv.style.position="fixed";
}
tipDiv.style.bottom="5px";
if(document.domain.indexOf('chineseoffice',0) > 0
    || document.domain.indexOf('newvilla',0) > 0
    || document.domain.indexOf('chinesefactory',0) > 0
    || document.domain.indexOf('bjoffices',0) > 0
    || document.domain.indexOf('cbdmap',0) > 0
    || document.domain.indexOf('yycoffice',0) > 0
    || document.domain.indexOf('sdoffice',0) > 0)
{
    tipDiv.style.position="absolute";
    tipDiv.style.bottom="55px";
}

tipDiv.style.right = "5px";
tipDiv.style.display = "block";

var titleDiv = document.createElement("div");
titleDiv.style.width="285px";
titleDiv.style.height="40px";
titleDiv.style.lineHeight="40px";
titleDiv.style.backgroundImage="url(" + imgSite + "Css/Images/bgico.png)";
titleDiv.style.backgroundPosition="-215px -58px";

var tDiv = document.createElement("div");
tDiv.innerHTML=unescape(swindleTipString);
tDiv.style.width="250px";
tDiv.style.paddingLeft="15px";
tDiv.style.fontSize="12px";
tDiv.style.fontWeight="bolder";
tDiv.style.cssFloat="left";
tDiv.style.styleFloat="left";
var closeDiv = document.createElement("div");
closeDiv.style.width="15px";
closeDiv.style.height="15px";
closeDiv.style.cssFloat="left";
closeDiv.style.styleFloat="left";
closeDiv.style.cursor="pointer";
closeDiv.style.marginTop="10px";
closeDiv.style.backgroundImage="url(" + imgSite + "Css/Images/bgico.png)";
closeDiv.style.backgroundPosition="-35px 0px";
closeDiv.onclick=function(){tipDiv.style.display="none";};
titleDiv.appendChild(tDiv);
titleDiv.appendChild(closeDiv);
tipDiv.appendChild(titleDiv);

var contentDivLine = document.createElement("div");
contentDivLine.style.width="281px";
contentDivLine.style.marginLeft="2px";
contentDivLine.style.borderColor="#82C1F5";
contentDivLine.style.borderStyle="solid";
contentDivLine.style.borderWidth="1px";
contentDivLine.style.borderTop="none";
contentDivLine.style.borderBottom="none";
contentDivLine.style.backgroundColor="#fff";

var contentDiv = document.createElement("div");
contentDiv.style.width="248px";
contentDiv.style.fontSize="14px";
contentDiv.style.lineHeight="14px";
contentDiv.style.padding="15px";
contentDiv.style.borderColor="#D5E8FB";
contentDiv.style.borderStyle="solid";
contentDiv.style.borderWidth="1px";
contentDiv.style.borderRightWidth="2px";
contentDiv.style.borderTop="none";
contentDiv.style.borderBottom="none";

var tipLink = document.createElement("a");
tipLink.href="http://www.daqi.com/fqz/";
tipLink.target="_blank";
tipLink.innerHTML=unescape(swindleTipString);
tipLink.title=unescape(swindleTipString);
tipLink.style.color="red";
contentDiv.appendChild(tipLink);
contentDivLine.appendChild(contentDiv);
tipDiv.appendChild(contentDivLine);

var contentDivB = document.createElement("div");
contentDivB.style.height="10px";
contentDivB.style.backgroundImage="url(" + imgSite + "Css/Images/bgico.png)";
contentDivB.style.backgroundPosition="-215px -98px";
tipDiv.appendChild(contentDivB);

document.body.insertBefore(tipDiv, document.body.firstChild);
if (document.all){ 
    window.attachEvent('onscroll', scrollTip) 
} 
else{ 
    window.addEventListener('scroll', scrollTip, false); 
}
function scrollTip()
{
    if(isIE6)
    {
        //tipDiv.style.top=document.documentElement.clientHeight + document.documentElement.scrollTop - tipDiv.offsetHeight+"px";
    }
}
setTimeout(function(){tipDiv.style.display="none";},30*1000);
