四川罗江县武装部人员侵占救灾物资被拘留
<DIV id=chan_newsTitle><FONT size=5></FONT><!-SSE COMENTSTART SSE-><!-SSE COMENTEND SSE-></DIV><DIV id=chan_newsInfo1><FONT color=#113dee 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><CLK><FONT color=#113dee size=5> 中新社成都五月二十三日电 (记者 杨杰)四川省政府新闻办<NOBR oncontextmenu="return false;" onmousemove=kwM(9); id=clickeyekey9 onmouseover="kwE(event,9, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,9)" target="_blank">主任</NOBR>侯雄飞在今天下午的新闻发布会上披露说,四川省德阳市罗江县有群众举报,武装部民兵训练基地聘用人员王亚东借<NOBR oncontextmenu="return false;" onmousemove=kwM(3); id=clickeyekey3 onmouseover="kwE(event,3, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,3)" onmouseout=kwL(event,this) target="_blank">工作</NOBR>之便,将可乐、八宝粥、方便面等救灾物品交到他的女友所开办的店铺销售,王亚东已经被刑事拘留,主管也被停职。</CLK><BR> <BR><CLK> 谈到四川省如何对救灾物资、捐款、<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>发放进行监督的问题时,侯雄飞说,中共四川省委、省政府对此高度重视,在灾情发生第二天,省纪委、工商等部门已经在媒体上就资金发放、物资监督公布了举报电话,纪检监察部门向六个重灾区派出十一个工作组,<NOBR oncontextmenu="return false;" onmousemove=kwM(5); id=clickeyekey5 onmouseover="kwE(event,5, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,5)" onmouseout=kwL(event,this) target="_blank">审计</NOBR>部门派出八个检查组,对救灾物资接收、发放、使用进行全程监督和检查,财政、民政、工商、审计、物价、质监、公安等部门也<NOBR oncontextmenu="return false;" onmousemove=kwM(2); id=clickeyekey2 onmouseover="kwE(event,2, this);" style="COLOR: #6600ff; BORDER-BOTTOM: #6600ff 1px dotted; BACKGROUND-COLOR: transparent; TEXT-DECORATION: underline" onclick="return kwC(event,2)" onmouseout=kwL(event,this) target="_blank">采取</NOBR>了有效措施,加强抗震救灾物资监管。</CLK><BR> <BR> 侯雄飞表示,欢迎社会各界群众、新闻媒体对这些事情进行监督,有关部门将坚决处理,绝不留情.</FONT></DIV> <FONT size=6>坚决打击发国难财的不法分子!</FONT> 原文由 丑鱼儿 发表: <br><P><FONT size=5>对于这种想发国难财的人,决不轻饶!!!</FONT></P> <P><FONT size=5>对于这种想发国难财的人,决不轻饶!!!</FONT></P> 发国难财,天理不容! 原文由 丑鱼儿 发表: <br><P><FONT size=5>对于这种想发国难财的人,决不轻饶!!!</FONT></P><P></P><P><FONT size=6>要从重从快打击</FONT></P>
页:
[1]