// JavaScript Document

  /*var time = 300;

    var h = 0;

    function addCount()

    {

        if(time>0)

        { 

time--;

h = h+5;

}

        else

        {

return;

}

        if(h>200) //高度

        {

            return;

        }

        document.getElementById("jisou_ad").style.display ="block";

        document.getElementById("jisou_ad").style.height = h+"px";

        setTimeout("addCount()",30); 

    }

    window.onload = function showAds()

    {

        //addCount();                  //自动伸缩护充页面

        setTimeout("noneAds()",8000); //停留时间自己适当调整

    }



    var T = 260;

    var N = 200; //高度

    function noneAds()

    {

        if(T>0)

        {

            T--;

            N = N-5;

        }

        else

        {

            return;

        }

        if(N<0)

        {

            document.getElementById("jisou_ad").style.display = "none";

            return;

        }

        

        document.getElementById("jisou_ad").style.height = N+"px";

        setTimeout("noneAds()",30); 

    }

	//定义页面的样式*********************************

	document.writeln("<style type=\"text\/css\">");

	document.writeln("<!--");

	document.writeln(".ad_jisou {");

	document.writeln("    margin:0px auto;");

	document.writeln("   \/* display:none;*\/");

	document.writeln("	width:970px;");

	document.writeln("	height:200px;");

	document.writeln("	overflow:hidden;");

	document.writeln("	text-align:right;");

	document.writeln("	font-size:12px;");

	document.writeln("	background-image:url(http:\/\/www.lawtv.com.cn\/image\/ad\/live.png);");

	document.writeln("	background-repeat:no-repeat;");

	document.writeln("	position:absolute;");

	document.writeln("  z-index:2000;");

	document.writeln("  cursor:pointer;");

	document.writeln("}");

	document.writeln(".ad_jisou a{");

	document.writeln("  font-size:12px;");

	document.writeln("  color:#FF0000;");

	document.writeln("}");

	document.writeln(".ad_jisou a:hover{");

	document.writeln("  color:#FF0000;");

	document.writeln("}");

	document.writeln(".ad_click{");

    document.writeln(" height:180px;");

    document.writeln(" width:960px;");

    document.writeln(" margin:0px auto;");

    document.writeln("}");

	document.writeln("-->");

	document.writeln("<\/style>")

	//定义页面的内容*********************************	

	document.writeln("    <div id=\"jisou_ad\" class=\"ad_jisou\" >");

	document.writeln("<div class=\"ad_click\" onclick=\"openlive()\"><\/div>");

	document.writeln("<a href=\"javascript:noneAds()\">关闭<\/a>&nbsp;&nbsp;&nbsp;&nbsp;");

	document.writeln("    <\/div>");

	//页面跳转*************************************

	function openlive(){

       window.open("http://live.lawtv.com.cn");

	   void 0;

    }*/