海鹰 发表于 2008-5-17 20:11

男子努力给妻子死后尊严

<DIV id=chan_newsTitle align=center><FONT size=5><DIV id=chan_newsTitle>&nbsp;</DIV><DIV id=chan_newsInfo><!-SSE COMENTSTART SSE-><!-SSE COMENTEND SSE-></DIV><DIV id=chan_newsInfo1></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><SCRIPT type=text/javascript><!--<br>                        function openWithSelfMain(url,name,width,height,top,left,noscrollbars){<br>                                        width2=(width<=screen.width)?width:(screen.width*3/4);<br>                                        height2=(height<=screen.height)?height:(screen.height*3/4);<br>                                        var options = "width=" + width2 + ",height=" + height2;<br>                                        if(top!="") options += ",top="+ top;<br>                                        if(left!="") options += ",left="+ left;<br>                                        options += "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no";<br>                                        if(noscrollbars == null || noscrollbars == "" || noscrollbars == "0" || width>screen.width || height>screen.height){<br>                                        options += ",scrollbars=yes";<br>                                        }else{<br>                                        options+= ",scrollbars=no";<br>                                        }<br>                                        //alert(width+">>"+height);<br>                                        //return false;<br>                                        new_window = window.open(url, name, options);<br>                                        window.self.name = "main";<br>                                        new_window.focus();<br>                        }<br>//--></SCRIPT><br>&nbsp;&nbsp;&nbsp;&nbsp; <br><CENTER><BR>&nbsp;&nbsp;&nbsp;&nbsp;男子用绳子将妻子的尸体绑在背部</CENTER><BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR><CLK>&nbsp;&nbsp;&nbsp;&nbsp;环球时报·环球网消息 12日发生在汶川的大地震在一瞬间向世界展现了中国“脆弱”的一面,西方媒体在这一<NOBR oncontextmenu="return false;" onmousemove=kwM(7); id=clickeyekey7 onmouseover="kwE(event,7, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,7)" target="_blank">特殊</NOBR>时刻开始向这个东方大国投来同情的目光。15日,英国《每日电讯报》刊登了一组图片,记录下中国抗震救灾过程中的一个个感人瞬间,并称此次震灾直接影响四川44个县市和1000万百姓,与比利时的人口数量相当。</CLK><BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR><CLK>&nbsp;&nbsp;&nbsp;&nbsp;几天来,有关地震的图片和救灾<NOBR oncontextmenu="return false;" onmousemove=kwM(0); id=clickeyekey0 onmouseover="kwE(event,0, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,0)" onmouseout=kwL(event,this) target="_blank">过程</NOBR>中涌现出的一个个动人故事,正在世界范围内流传。</CLK><BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;在地震中痛失妻子的男子用绳子将妻子的尸体绑在背部,送她去太平间。在极大悲痛的折磨中,他努力要给予自己的妻子死后些许的尊严。但是在中国地震后的混乱中,这名男子坚持认为妻子不应该遗弃在那些尖利的碎石中。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR><CLK>&nbsp;&nbsp;&nbsp;&nbsp;因此,他包含着深情,将她的<NOBR oncontextmenu="return false;" onmousemove=kwM(6); id=clickeyekey6 onmouseover="kwE(event,6, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,6)" onmouseout=kwL(event,this) target="_blank">身体</NOBR>与自已绑在一起——然后用摩托车载着他前往当地的太平间。</CLK><BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;这是大毁灭后存在的人性的象征。<BR></DIV></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><SCRIPT type=text/javascript><!--<br>                        function openWithSelfMain(url,name,width,height,top,left,noscrollbars){<br>                                        width2=(width<=screen.width)?width:(screen.width*3/4);<br>                                        height2=(height<=screen.height)?height:(screen.height*3/4);<br>                                        var options = "width=" + width2 + ",height=" + height2;<br>                                        if(top!="") options += ",top="+ top;<br>                                        if(left!="") options += ",left="+ left;<br>                                        options += "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no";<br>                                        if(noscrollbars == null || noscrollbars == "" || noscrollbars == "0" || width>screen.width || height>screen.height){<br>                                        options += ",scrollbars=yes";<br>                                        }else{<br>                                        options+= ",scrollbars=no";<br>                                        }<br>                                        //alert(width+">>"+height);<br>                                        //return false;<br>                                        new_window = window.open(url, name, options);<br>                                        window.self.name = "main";<br>                                        new_window.focus();<br>                        }<br>//--></SCRIPT><FONT size=5>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</FONT><FONT size=5>&nbsp;&nbsp;&nbsp;&nbsp;男子用绳子将妻子的尸体绑在背部</FONT><BR><FONT size=5>&nbsp;&nbsp;&nbsp;&nbsp;<BR><CLK>&nbsp;&nbsp;&nbsp;&nbsp;环球时报·环球网消息 12日发生在汶川的大地震在一瞬间向世界展现了中国“脆弱”的一面,西方媒体在这一<NOBR oncontextmenu="return false;" onmousemove=kwM(7); id=clickeyekey7 onmouseover="kwE(event,7, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,7)" target="_blank">特殊</NOBR>时刻开始向这个东方大国投来同情的目光。15日,英国《每日电讯报》刊登了一组图片,记录下中国抗震救灾过程中的一个个感人瞬间,并称此次震灾直接影响四川44个县市和1000万百姓,与比利时的人口数量相当。</CLK><BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR><CLK>&nbsp;&nbsp;&nbsp;&nbsp;几天来,有关地震的图片和救灾<NOBR oncontextmenu="return false;" onmousemove=kwM(0); id=clickeyekey0 onmouseover="kwE(event,0, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,0)" onmouseout=kwL(event,this) target="_blank">过程</NOBR>中涌现出的一个个动人故事,正在世界范围内流传。</CLK><BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;在地震中痛失妻子的男子用绳子将妻子的尸体绑在背部,送她去太平间。在极大悲痛的折磨中,他努力要给予自己的妻子死后些许的尊严。但是在中国地震后的混乱中,这名男子坚持认为妻子不应该遗弃在那些尖利的碎石中。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR><CLK>&nbsp;&nbsp;&nbsp;&nbsp;因此,他包含着深情,将她的<NOBR oncontextmenu="return false;" onmousemove=kwM(6); id=clickeyekey6 onmouseover="kwE(event,6, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,6)" onmouseout=kwL(event,this) target="_blank">身体</NOBR>与自已绑在一起——然后用摩托车载着他前往当地的太平间。</CLK><BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;这是大毁灭后存在的人性的象征。<BR></FONT></DIV>

颂歌 发表于 2008-5-18 12:18

原文由 开心果666 发表: <FONT color=#e6421a size=6>大毁灭后存在的人性的象征。<BR>真诚的爱情.....</FONT>

开心果666 发表于 2008-5-18 10:46

<FONT color=#e6421a size=6>大毁灭后存在的人性的象征。<BR>真诚的爱情.....</FONT>

寒冰游 发表于 2008-5-18 07:21

<FONT face=华文行楷 color=#1a1ae6 size=7>真诚的爱!</FONT>

快活鱼 发表于 2008-5-18 08:44

人性的象征,真诚的爱!

日不落 发表于 2008-5-18 06:04

原文由 江湖散人 发表: <FONT color=#f73809><STRONG><FONT size=6>可贵的真挚的感情!</FONT><BR></STRONG></FONT>

江湖散人 发表于 2008-5-17 21:52

<FONT color=#f73809><STRONG><FONT size=6>可贵的真挚的感情!</FONT><BR></STRONG></FONT>

寒江搏浪 发表于 2008-5-17 21:12

<FONT size=6>难能可贵的真挚的感情!</FONT>

四水 发表于 2008-5-17 20:25

原文由 海鹰 发表: <br><DIV id=chan_newsTitle align=center><FONT size=5><DIV id=chan_newsTitle>&nbsp;</DIV><DIV id=chan_newsInfo><!-SSE COMENTSTART SSE-><!-SSE COMENTEND SSE-></DIV><DIV id=chan_newsInfo1></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><SCRIPT type=text/javascript><!--<br>                        function openWithSelfMain(url,name,width,height,top,left,noscrollbars){<br>                                        width2=(width<=screen.width)?width:(screen.width*3/4);<br>                                        height2=(height<=screen.height)?height:(screen.height*3/4);<br>                                        var options = "width=" + width2 + ",height=" + height2;<br>                                        if(top!="") options += ",top="+ top;<br>                                        if(left!="") options += ",left="+ left;<br>                                        options += "toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no";<br>                                        if(noscrollbars == null || noscrollbars == "" || noscrollbars == "0" || width>screen.width || height>screen.height){<br>                                        options += ",scrollbars=yes";<br>                                        }else{<br>                                        options+= ",scrollbars=no";<br>                                        }<br>                                        //alert(width+">>"+height);<br>                                        //return false;<br>                                        new_window = window.open(url, name, options);<br>                                        window.self.name = "main";<br>                                        new_window.focus();<br>                        }<br>//--></SCRIPT><BR>&nbsp;&nbsp;&nbsp;&nbsp; <BR><CENTER><BR>&nbsp;</FONT><FONT size=5>&nbsp;&nbsp;&nbsp;&nbsp;这是大毁灭后存在的人性的象征。</FONT></CENTER><FONT size=5><CENTER><HR></CENTER><CENTER><STRONG><FONT color=#ff3300 size=7>真爱体现!</FONT></STRONG><BR></CENTER></FONT></DIV></DIV>

快乐老头 发表于 2008-5-17 21:01

<STRONG><FONT face=隶书 color=#ff3300 size=7>&nbsp;&nbsp;&nbsp; 真爱体现!</FONT></STRONG>

翻江鼠 发表于 2008-5-18 13:13

<FONT size=6>真情是这样书写的</FONT>
页: [1]
查看完整版本: 男子努力给妻子死后尊严