<!--
        function objSP_Article() {
            this.ImgUrl = "";
            this.LinkUrl = "";
            this.Title = "";
        }

        function SlidePic_Article(_id) {
            this.ID = _id;
            this.Width = 0;
            this.Height = 0;
            this.TimeOut = 5000;
            this.Effect = 23;
            this.TitleLen = 0;
            this.PicNum = -1;
            this.Img = null;
            this.Url = null;
            this.Title = null;
            this.AllPic2 = new Array();
            this.Add = SlidePic_Article_Add;
            this.Show = SlidePic_Article_Show;
            this.LoopShow = SlidePic_Article_LoopShow2;
        }

        function SlidePic_Article_Add(_SP)
        { this.AllPic2[this.AllPic2.length] = _SP; }

        function SlidePic_Article_Show() {
            if (this.AllPic2[0] == null) return false;
            document.write("<div align='left'><a id='Url2_" + this.ID + "' href='' target=_blank><img id='Img2_" + this.ID + "' style='width:" + this.Width + "; height:" + this.Height + "; filter: revealTrans(duration=2,transition=23);' src='javascript:null' border='0'></a>");
            if (this.TitleLen != 0) document.write("<br><span id='Title2_" + this.ID + "'></span></div>");
            this.Img = document.getElementById("Img2_" + this.ID);
            this.Url = document.getElementById("Url2_" + this.ID);
            this.Title = document.getElementById("Title2_" + this.ID);
            this.LoopShow();
        }

        function SlidePic_Article_LoopShow2() {
            if (this.PicNum < this.AllPic2.length - 1) this.PicNum++;
            else this.PicNum = 0;
            this.Img.filters.revealTrans.Transition = this.Effect;
            this.Img.filters.revealTrans.apply();
            this.Img.src = this.AllPic2[this.PicNum].ImgUrl;
            this.Img.filters.revealTrans.play();
            this.Url.href = this.AllPic2[this.PicNum].LinkUrl;
            if (this.Title) this.Title.innerHTML = "<a href=" + this.AllPic2[this.PicNum].LinkUrl + " target=_blank>" + this.AllPic2[this.PicNum].Title + "</a>";
            this.Img.timer = setTimeout(this.ID + ".LoopShow()", this.TimeOut);
        }
//-->
