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

不法分子冒充志愿者在北川盗窃30人被抓(图)

<DIV id=chan_newsTitle><FONT color=#421ae6 size=5></FONT>&nbsp;</DIV><DIV id=chan_newsInfo><FONT color=#421ae6 size=5></FONT><!-SSE COMENTSTART SSE-><!-SSE COMENTEND SSE-></DIV><DIV id=chan_newsInfo1><FONT color=#421ae6 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><DIV id=chan_newsDetail><BR><FONT color=#421ae6 size=5>&nbsp;&nbsp;&nbsp;&nbsp; </FONT><CENTER><FONT color=#421ae6 size=5><IMG title=不法分子冒充志愿者在北川盗窃30人被抓(图) alt=不法分子冒充志愿者在北川盗窃30人被抓(图) src="http://news.china.com/zh_cn/social/1007/20080517/images/14849506_452773.jpg" border=0></FONT></CENTER><BR><FONT color=#421ae6 size=5>&nbsp;&nbsp;&nbsp;&nbsp;5月16日,北川县城。两名男子被愤怒的群众包围,这两个人在地震后潜入别人的家中偷盗现金与贵重物品,被警方抓获。何龙盛 摄<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;本报讯 (记者杨万国)成千上万的志愿者冒险在北川参与抗震救灾时,一些不法分子冒充志愿者入城偷盗。昨日,北川前线指挥部负责安保的一位警察介绍,目前北川有许多冒充志愿者的盗窃人员。已经抓住30多名,这些人目前被拘留15日。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;昨日下午,记者在北川县城看到,2个小时民警就抓住了4名涉嫌进入北川县城盗窃的人员。其中有2名人员冒充志愿者,还有2名则是逃难的灾民模样。<BR>&nbsp;&nbsp;&nbsp;&nbsp;<BR>&nbsp;&nbsp;&nbsp;&nbsp;在北川抗震救灾前线指挥部负责安保工作的一位警察介绍,15日晚上,他们就抓住了30多名这样的不法分子。<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;记者14日进入北川县城即看到,路边一些卖电脑的商店,还有手机通讯店,都有翻箱倒柜的痕迹。一些被翻开的盒子丢在坍塌的马路边。<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;上述负责安保的警察介绍,目前负责安保的警察已经加强在北川县城的巡逻,同时加强对搬运大宗物品的人员甄别盘查。一旦发现在房子里面乱窜的可疑人员,他们就进行控制。审查后,如果盗窃事实成立,将给予15日拘留处理。</FONT></DIV>

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

<FONT color=#421ae6 size=5>15日拘留处理。太便宜他们了?</FONT>

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

严惩社会败类!

探索真谛543(院长) 发表于 2008-5-18 20:41

枪毙!!!

黑龙 发表于 2008-5-18 20:46

原文由 今尹 发表: <BR>非常时期应该有强硬的法律措施,发国难才财的人,抓了直接杀!<BR>

晓月清风 发表于 2008-5-18 17:14

<IMG style="WIDTH: 330px; HEIGHT: 385px" height=385 src="http://news.xinhuanet.com/legal/2008-05/18/xinsrc_042050518092114062329.jpg" width=373 border=0>

开心果666 发表于 2008-5-18 11:38

<FONT size=6>发国难财,要严惩.</FONT>

今尹 发表于 2008-5-18 17:08

<br>非常时期应该有强硬的法律措施,发国难才财的人,抓了直接杀!<br>

寒鸦 发表于 2008-5-18 17:03

剐~~~!

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

原文由 开心果666 发表: <FONT size=6>发国难财,要严惩.</FONT>

三省克己 发表于 2008-5-18 05:16

原文由 快乐老头 发表: <br><P><FONT face=隶书 size=7>可恶!</FONT></P>

卡拉熊 发表于 2008-5-18 07:46

应该严惩!!!

山东迷踪拳 发表于 2008-5-17 22:08

非常时期应该有强硬的法律措施,发国难才财的人,抓了直接杀!

阿庆嫂 发表于 2008-5-18 03:42

原文由 翻江鼠 发表: <br><P>原文由 潘冬子 发表: <FONT size=6>天下乱,坏人串。这也是规律,要警惕!</FONT> </P><P><FONT size=6>浑水摸鱼</FONT></P><FONT face=华文行楷 size=5><BIG>这种人叫"老天爷没长眼,没有让他死,但是,死期已经到了,自己找死吧!"</BIG></FONT>

寒冰游 发表于 2008-5-17 21:06

<P align=center><FONT face=华文行楷 size=7>没良心!</FONT></P>

晓月清风 发表于 2008-5-17 22:15

<P>原文由 巴山夜雨 发表: 该死! </P><P><FONT size=5>找着死!!<IMG src="http://news.xinhuanet.com/legal/2008-05/18/xinsrc_042050518092114062329.jpg" border=0></FONT></P><br><br>[此帖子已被 晓月清风 在 2008-5-18 17:14:18 编辑过]

白狐 发表于 2008-5-17 21:14

发国难财。可耻。

海飞 发表于 2008-5-17 22:22

15日拘留处理。太便宜他们了!

巴山夜雨 发表于 2008-5-17 20:52

该死!

快乐老头 发表于 2008-5-17 20:54

<P><FONT face=隶书 size=7>可恶!</FONT></P>
页: [1] 2
查看完整版本: 不法分子冒充志愿者在北川盗窃30人被抓(图)