﻿
//友情提示部分
function clue()
{
    document.write("&nbsp; &nbsp;&nbsp;<font color='blue'>友情提示：看完本页,别急关闭,");
    document.write("仅需在本页停留三分钟,即可无限量免费下载2009年最热门的各类创业技术,致富妙招…</font>");
    document.write(" &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<input id=\"Button1\" type=\"button\" value=\"点击看详情\" onclick=window.open(\"http://www.f996.com/free\") style=\"color: white; border-top-style: none; border-right-style: none; border-left-style: none; background-color: threeddarkshadow; border-bottom-style: none; width: 85px;height:23px;\"/>");
}

//3分钟计时
function ThreeMinute()
{
    document.write("&nbsp; &nbsp;&nbsp;仅需在本页再停留<font color=\"red\"><span id=\"span_ThreeMinute\">2分60秒</span></font>,即可无限量免费下载2009年最热门的<font color=\"red\">164项</font>创业实用技术以及<font color=\"red\">《空手赚钱术》</font>(完整版)等");
    document.write("&nbsp; &nbsp;&nbsp;<input id=\"Btn_ThreeMinute\" type=\"button\" value=\"点击看详情\" onclick=window.open(\"http://www.f996.com/free\") style=\"color: white; border-top-style: none; border-right-style: none; border-left-style: none; background-color: threeddarkshadow; border-bottom-style: none; width: 85px;height:23px;\"/>");
}
var alltime = 180;
function setTime()
{
    if(alltime <= 0)
    {
        clearInterval(s)
        Btn_ThreeMinute.outerHTML = "<input id=\"Btn_ThreeMinute\" type=\"button\" value=\"免费下载\" onclick=window.open(\"http://down.f996.com\") style=\"color: white; border-top-style: none; border-right-style: none; border-left-style: none; background-color: threeddarkshadow; border-bottom-style: none; width: 85px;height:23px;\"/>";
    }
    else
    {
        alltime--;
        m=Math.floor(alltime/60);
        se=Math.round(alltime-(Math.floor(alltime/60)*60));
        if(document.getElementById("span_ThreeMinute"))
        {
            span_ThreeMinute.innerText= m + "分" + se + "秒";
        }
    }
}
s = setInterval("setTime()",1000);