海鹰 发表于 2008-5-20 21:56

外交部:中国政府和人民感谢国际社会支援

<DIV id=chan_newsTitle><FONT size=5></FONT><!-SSE COMENTSTART SSE-><!-SSE COMENTEND SSE-></DIV><DIV id=chan_newsInfo1><FONT size=5></FONT></DIV><SCRIPT language=JavaScript type=text/javascript><br>function Marquee()<br>{<br>        this.ID = document.getElementById(arguments);<br>        if(!this.ID)<br>        {<br>                this.ID = -1;<br>                return;<br>        }<br>        this.Direction = this.Width = this.Height = this.DelayTime = this.WaitTime = this.Correct = this.CTL = this.StartID = this.Stop = this.MouseOver = 0;<br>        this.Step = 1;<br>        this.Timer = 30;<br>        this.DirectionArray = {"top":0 , "bottom":1 , "left":2 , "right":3};<br>        if(typeof arguments == "number" || typeof arguments == "string")this.Direction = arguments;<br>        if(typeof arguments == "number")this.Step = arguments;<br>        if(typeof arguments == "number")this.Width = arguments;<br>        if(typeof arguments == "number")this.Height = arguments;<br>        if(typeof arguments == "number")this.Timer = arguments;<br>        if(typeof arguments == "number")this.DelayTime = arguments;<br>        if(typeof arguments == "number")this.WaitTime = arguments;<br>        if(typeof arguments == "number")this.ScrollStep = arguments<br>        this.ID.style.overflow = this.ID.style.overflowX = this.ID.style.overflowY = "hidden";<br>        this.ID.noWrap = true;<br>        this.IsNotOpera = (navigator.userAgent.toLowerCase().indexOf("opera") == -1);<br>        if(arguments.length >= 7)this.Start();<br>}<br><br>Marquee.prototype.Start = function()<br>{<br>        if(this.ID == -1)return;<br>        if(this.WaitTime < 800)this.WaitTime = 800;<br>        if(this.Timer < 20)this.Timer = 20;<br>        if(this.Width == 0)this.Width = parseInt(this.ID.style.width);<br>        if(this.Height == 0)this.Height = parseInt(this.ID.style.height);<br>        if(typeof this.Direction == "string")this.Direction = this.DirectionArray;<br>        this.HalfWidth = Math.round(this.Width / 2);<br>        this.HalfHeight = Math.round(this.Height / 2);<br>        this.BakStep = this.Step;<br>        this.ID.style.width = this.Width + "px";<br>        this.ID.style.height = this.Height + "px";<br>        if(typeof this.ScrollStep != "number")this.ScrollStep = this.Direction > 1 ? this.Width : this.Height;<br>        var msobj = this;<br>        var timer = this.Timer;<br>        var delaytime = this.DelayTime;<br>        var waittime = this.WaitTime;<br>        msobj.StartID = function(){msobj.Scroll()}<br>        msobj.Continue = function()<br>                                {<br>                                        if(msobj.MouseOver == 1)<br>                                        {<br>                                                setTimeout(msobj.Continue,delaytime);<br>                                        }<br>                                        else<br>                                        {        clearInterval(msobj.TimerID);<br>                                                msobj.CTL = msobj.Stop = 0;<br>                                                msobj.TimerID = setInterval(msobj.StartID,timer);<br>                                        }<br>                                }<br><br>        msobj.Pause = function()<br>                        {<br>                                msobj.Stop = 1;<br>                                clearInterval(msobj.TimerID);<br>                                setTimeout(msobj.Continue,delaytime);<br>                        }<br><br>        msobj.Begin = function()<br>                {<br>                        msobj.ClientScroll = msobj.Direction > 1 ? msobj.ID.scrollWidth : msobj.ID.scrollHeight;<br>                        if((msobj.Direction <= 1 && msobj.ClientScroll <= msobj.Height + msobj.Step) || (msobj.Direction > 1 && msobj.ClientScroll <= msobj.Width + msobj.Step))return;<br>                        msobj.ID.innerHTML += msobj.ID.innerHTML;<br>                        msobj.TimerID = setInterval(msobj.StartID,timer);<br>                        if(msobj.ScrollStep < 0)return;<br>                        msobj.ID.onmousemove = function(event)<br>                                                {<br>                                                        if(msobj.ScrollStep == 0 && msobj.Direction > 1)<br>                                                        {<br>                                                                var event = event || window.event;<br>                                                                if(window.event)<br>                                                                {<br>                                                                        if(msobj.IsNotOpera)<br>                                                                        {<br>                                                                                msobj.EventLeft = event.srcElement.id == msobj.ID.id ? event.offsetX - msobj.ID.scrollLeft : event.srcElement.offsetLeft - msobj.ID.scrollLeft + event.offsetX;<br>                                                                        }<br>                                                                        else<br>                                                                        {<br>                                                                                msobj.ScrollStep = null;<br>                                                                                return;<br>                                                                        }<br>                                                                }<br>                                                                else<br>                                                                {<br>                                                                        msobj.EventLeft = event.layerX - msobj.ID.scrollLeft;<br>                                                                }<br>                                                                msobj.Direction = msobj.EventLeft > msobj.HalfWidth ? 3 : 2;<br>                                                                msobj.AbsCenter = Math.abs(msobj.HalfWidth - msobj.EventLeft);<br>                                                                msobj.Step = Math.round(msobj.AbsCenter * (msobj.BakStep*2) / msobj.HalfWidth);<br>                                                        }<br>                                                }<br>                        msobj.ID.onmouseover = function()<br>                                                {<br>                                                        if(msobj.ScrollStep == 0)return;<br>                                                        msobj.MouseOver = 1;<br>                                                        clearInterval(msobj.TimerID);<br>                                                }<br>                        msobj.ID.onmouseout = function()<br>                                                {<br>                                                        if(msobj.ScrollStep == 0)<br><br>                                                        {<br>                                                                if(msobj.Step == 0)msobj.Step = 1;<br>                                                                return;<br>                                                        }<br>                                                        msobj.MouseOver = 0;<br>                                                        if(msobj.Stop == 0)<br>                                                        {<br>                                                                clearInterval(msobj.TimerID);<br>                                                                msobj.TimerID = setInterval(msobj.StartID,timer);<br>                                                        }<br>                                                }<br>                }<br>        setTimeout(msobj.Begin,waittime);<br>}<br><br>Marquee.prototype.Scroll = function()<br>{<br>        switch(this.Direction)<br>        {<br>                case 0:<br>                        this.CTL += this.Step;<br>                        if(this.CTL >= this.ScrollStep && this.DelayTime > 0)<br>                        {<br>                                this.ID.scrollTop += this.ScrollStep + this.Step - this.CTL;<br>                                this.Pause();<br>                                return;<br>                        }<br>                        else<br>                        {<br>                                if(this.ID.scrollTop >= this.ClientScroll)<br>                                {<br>                                        this.ID.scrollTop -= this.ClientScroll;<br>                                }<br>                                this.ID.scrollTop += this.Step;<br>                        }<br>                break;<br><br>                case 1:<br>                        this.CTL += this.Step;<br>                        if(this.CTL >= this.ScrollStep && this.DelayTime > 0)<br>                        {<br>                                this.ID.scrollTop -= this.ScrollStep + this.Step - this.CTL;<br>                                this.Pause();<br>                                return;<br>                        }<br>                        else<br>                        {<br>                                if(this.ID.scrollTop <= 0)<br>                                {<br>                                        this.ID.scrollTop += this.ClientScroll;<br>                                }<br>                                this.ID.scrollTop -= this.Step;<br>                        }<br>                break;<br><br>                case 2:<br>                        this.CTL += this.Step;<br>                        if(this.CTL >= this.ScrollStep && this.DelayTime > 0)<br>                        {<br>                                this.ID.scrollLeft += this.ScrollStep + this.Step - this.CTL;<br>                                this.Pause();<br>                                return;<br>                        }<br>                        else<br>                        {<br>                                if(this.ID.scrollLeft >= this.ClientScroll)<br>                                {<br>                                        this.ID.scrollLeft -= this.ClientScroll;<br>                                }<br>                                this.ID.scrollLeft += this.Step;<br>                        }<br>                break;<br><br>                case 3:<br>                        this.CTL += this.Step;<br>                        if(this.CTL >= this.ScrollStep && this.DelayTime > 0)<br>                        {<br>                                this.ID.scrollLeft -= this.ScrollStep + this.Step - this.CTL;<br>                                this.Pause();<br>                                return;<br>                        }<br>                        else<br>                        {<br>                                if(this.ID.scrollLeft <= 0)<br>                                {<br>                                        this.ID.scrollLeft += this.ClientScroll;<br>                                }<br>                                this.ID.scrollLeft -= this.Step;<br>                        }<br>                break;<br>        }<br>}<br></SCRIPT><br><STYLE type=text/css><!--<br>#EndPageRollText {background:#f5f5f5; border:1px solid #CCC; height:25px;}<br>#EndPageRollText ul {width:268px; overflow:hidden; float:left;}<br>#EndPageRollText ul,<br>#EndPageRollText li {margin:0; padding:0; list-style-type:none;}<br>#EndPageRollText li {height:25px; line-height:25px; overflow:hidden; text-align:left; font-size:12px; padding-left:3px;}<br>#EndPageRollText li a {font-size:12px; text-decoration:none;}<br>--></STYLE><br><SCRIPT>new Marquee("EndPageRollText",0,1,536,25,30,3000,3000,25)</SCRIPT><br><DIV id=chan_newsDetail><FONT size=5>&nbsp;&nbsp;&nbsp;&nbsp;新华网北京5月20日电(记者林立平、荣燕)外交部发言人秦刚20日在例行记者会上表示,中国政府和人民对国际社会对中国四川地震灾害的同情、慰问和支援表示衷心感谢。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;秦刚说,今天是全国哀悼日的第二天。在此,我们对四川汶川大地震的遇难者表示深切哀悼。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;他说,地震发生后,国际社会纷纷通过各种方式向中国政府和人民表达真挚的同情和慰问,向中国抗震救灾工作提供有力的支持和援助。截至目前,共有166个国家和30余个国际组织向中方表示慰问,国际社会援助源源不断。专程前来中国外交部吊唁的各国驻华使节和国际组织驻华代表络绎不绝。有100多个国家驻华使馆和国际机构驻华代表处降半旗志哀。各国各界人士还前往中国驻外机构吊唁。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;秦刚表示,日本、俄罗斯、韩国、新加坡政府向中国派来了专业救援队,他们不畏艰险,争分夺秒,夜以继日,连续奋战,开展救援行动,体现出了对生命的尊重和极高的专业素质,使中国人民深受感动。我们对四国政府和人民以及全体救援队员表示衷心感谢。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;他说,根据灾区抗震救灾工作需要,中国政府已同意德国、意大利、俄罗斯、日本向中国派遣医疗队,目前还有不少其他国家和组织也表示希望向中国派遣医疗队,我们愿与他们保持联系并根据医疗救援的进展情况予以积极考虑。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;“患难见真情,所有这些慰问和支援都充分体现了世界各国政府和人民对中国人民的友好情谊和崇高的人道主义精神。中国政府和人民对此表示衷心感谢。”秦刚说。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;他表示,我们坚信,在中国政府的坚强领导下,在国际社会的大力支持下,全体中国人民众志成城,团结奋斗,一定能克服一切艰难险阻,赢得抗震救灾斗争的胜利。</FONT></DIV>

文彪 发表于 2008-5-20 23:51

<FONT size=5>“患难见真情,所有这些慰问和支援都充分体现了世界各国政府和人民对中国人民的友好情谊和崇高的人道主义精神。中国政府和人民对此表示衷心感谢。”秦刚说。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;他表示,我们坚信,在中国政府的坚强领导下,在国际社会的大力支持下,全体中国人民众志成城,团结奋斗,一定能克服一切艰难险阻,赢得抗震救灾斗争的胜利。</FONT>
页: [1]
查看完整版本: 外交部:中国政府和人民感谢国际社会支援