"
+"
\u6CE8\u9500"
+"
\u62D6\u52A8"
+ "
"+SF_FNB_MIN+""
+ "
"+SF_FNB_CLOSE+"";
var TMP_OLDUNLOAD_FUNC = null;
var SF_flag_fnbmove = false;
function SF_FUNC_IsEasyLink()
{
if(typeof(SF_g_Config) != "undefined")
{
return true;
}
var tags = document.getElementsByTagName(''script'');
if(tags)
{
for(var i=0;i
self.innerWidth-15){
return self.innerWidth-15;
}
else{
return self.innerWidth;
}
}
}
catch( e){return 0;}
}
function SF_FUNC_GetClientHeight()
{
try{
if(SF_FLAG_isIE){
var wHeight = document.body.clientHeight || document.documentElement.clientHeight;
if ( SF_FUNC_GetContentWidth() <= document.body.clientWidth-20 ){
return wHeight+20;
}
else{
return wHeight;
}
}
else{
if(SF_FUNC_GetContentWidth() > self.innerWidth-16){
return self.innerHeight-16;
}
else{
return self.innerHeight;
}
}
}
catch(e){return 0;}
}
function SF_FUNC_GetScrollPosX()
{
try{
if(SF_FLAG_isIE){
return document.body.scrollLeft;
}
else{
return window.pageXOffset;
}
}
catch(e){return 0;}
}
function SF_FUNC_GetScrollPosY()
{
try{
if ( SF_FLAG_isIE){
if (typeof window.pageYOffset != ''undefined''){
return window.pageYOffset;
}
else if (typeof document.compatMode != ''undefined'' &&
document.compatMode != ''BackCompat''){
return document.documentElement.scrollTop;
}
else if (typeof document.body != ''undefined''){
return document.body.scrollTop;
}
}
else{
return window.pageYOffset;
}
}
catch (e){return 0;}
}
function SF_FUNC_GetMousePosX( e )
{
try{
if (SF_FLAG_isIE){
return event.clientX+document.body.scrollLeft;
}else{
return e.screenX;
}
}
catch(e){return 0;}
}
function SF_FUNC_GetMousePosY( e )
{
try
{
if ( SF_FLAG_isIE ) {
return event.clientY+document.body.scrollTop;
}
else{
return e.screenY;
}
}
catch(e){return 0;}
}
function SF_FUNC_unloadFNB()
{
try
{
if(typeof( top.SF_FLAG_fnbMutex ) != "unknown")
top.SF_FLAG_fnbMutex = false;
}catch(e){
return ;
}
if ( TMP_OLDUNLOAD_FUNC != null )
{
TMP_OLDUNLOAD_FUNC();
}
}
function SF_FUNC_NoOp()
{
return false;
}
var lastx = 0;
var lasty = 0;
var lastscrollx = 0;
var lastscrolly = 0;
function SF_FUNC_startdragfnb( obj )
{
SF_flag_fnbmove=true;
if ( SF_FLAG_isIE )
{
lastx = parseInt(event.clientX+document.body.scrollLeft);
lasty = parseInt(event.clientY+document.body.scrollTop);
}
else
{
lastx = Event.screenX;
lasty = Event.screenY;
//lastx = parseInt(document.getElementById(SF_FNB_NAME).style.left);
//lasty = parseInt(document.getElementById(SF_FNB_NAME).style.top);
}
if ( document.attachEvent )
{
document.attachEvent( "onmousemove", SF_FUNC_dragfnb );
document.attachEvent( "onmouseup", SF_FUNC_stopdragfnb );
document.attachEvent( "onselectstart",SF_FUNC_NoOp);
}
else
{
document.addEventListener( "mousemove", SF_FUNC_dragfnb, true );
document.addEventListener( "mouseup", SF_FUNC_stopdragfnb, true );
}
obj.parentNode.style.backgroundColor=SF_FNB_hover; obj.parentNode.style.borderColor =SF_FNB_hover;
}
function SF_FUNC_dragfnb( e )
{
if(SF_flag_fnbmove)
{
var obj = get_fnb_obj();
if(!obj)
return;
var newx = SF_FUNC_GetMousePosX( e );
var newy = SF_FUNC_GetMousePosY( e );
var newleft = parseInt( obj.style.left )+( newx-lastx );
var newtop = parseInt( obj.style.top )+( newy-lasty );
if ( newleft < SF_FUNC_GetScrollPosX() )
{
newleft = SF_FUNC_GetScrollPosX();
}
else if ( newleft > get_fnb_maxleft() )
{
newleft = get_fnb_maxleft();
}
if ( newtop < SF_FUNC_GetScrollPosY() )
{
newtop = SF_FUNC_GetScrollPosY();
}
else if ( newtop > get_fnb_maxtop() )
{
newtop = get_fnb_maxtop();
}
obj.style.left = newleft+"px";;
obj.style.top = newtop+"px";;
lastx = newx;
lasty = newy;
}
}
function SF_FUNC_stopdragfnb(e)
{
SF_flag_fnbmove=false;
if ( document.detachEvent ){
document.detachEvent( "onmousemove", SF_FUNC_dragfnb );
document.detachEvent( "onmouseup", SF_FUNC_stopdragfnb );
document.detachEvent( "onselectstart",SF_FUNC_NoOp);
}
else{
document.removeEventListener( "mousemove", SF_FUNC_dragfnb, true );
document.removeEventListener( "mouseup", SF_FUNC_stopdragfnb, true );
}
var fnbWin = get_fnb_obj();
if(!fnbWin)
return;
fnbWin.style.backgroundColor=SF_FNB_normal;
fnbWin.style.borderColor=SF_FNB_normal;
}
function SF_FUNC_fnbonscroll()
{
var newX;
var newY;
var finalX;
var finalY;
var width;
var fnbWin = get_fnb_obj();
if ( fnbWin != null )
{
newX = SF_FUNC_GetScrollPosX();
newY = SF_FUNC_GetScrollPosY();
finalX = parseInt( fnbWin.style.left )+( newX-lastscrollx );
if ( finalX < SF_FUNC_GetScrollPosX() )
{
finalX = SF_FUNC_GetScrollPosX();
}
else if ( finalX > get_fnb_maxleft() )
{
finalX = get_fnb_maxleft();
}
finalY = parseInt( fnbWin.style.top )+( newY-lastscrolly );
if ( finalY < SF_FUNC_GetScrollPosY())
{
finalY = SF_FUNC_GetScrollPosY();
}
else if ( finalY > get_fnb_maxtop())
{
finalY = get_fnb_maxtop();
}
fnbWin.style.top = finalY+"px";
fnbWin.style.left = finalX+"px";
lastscrollx = newX;
lastscrolly = newY;
}
}
var ___fnbResizeCounter = false;
function SF_FUNC_fnbonresize()
{
var fnbWin = get_fnb_obj();
if(!fnbWin)
return;
if ( SF_FLAG_isIE )
{
___fnbResizeCounter = !___fnbResizeCounter;
if ( !___fnbResizeCounter )
{
fnbWin.style.left = get_fnb_maxleft();
fnbWin.style.top = 5;
}
}
else
{
if ( parseInt( fnbWin.style.left ) > get_fnb_maxleft() )
{
fnbWin.style.left = get_fnb_maxleft();
}
if ( parseInt( fnbWin.style.top ) > get_fnb_maxtop() )
{
fnbWin.style.top = get_fnb_maxtop();
}
}
}
function SF_FUNC_DrawFNB()
{
var zIndex = 19327352831;
if ( navigator.userAgent.toLowerCase().indexOf( "opera" ) != -1 )
{
zIndex = 0;
}
var SF_FNB_HTML = "" +
SF_FNB_contenthtml +
"" ;
var scriptNodes = document.getElementsByTagName("script");
var nodesLen = scriptNodes.length;
var target = null;
for(var i=0; i< FramesArr.length; ++i)
{
if( typeof FramesArr[i].frameElement != "undefined" &&
typeof FramesArr[i].frameElement.tagname != "undefined" &&
FramesArr[i].frameElement.tagName.toUpperCase() == "FRAME")
{
ShouldDrawFnb = false;
break;
}
}
if( SF_FUNC_GetClientWidth() < SF_FNB_WIDTH ||
SF_FUNC_GetClientHeight() < SF_FNB_HEIGHT )
{
ShouldDrawFnb = false;
}
return ShouldDrawFnb;
}
function SF_FUNC_WaitMutex()
{
try
{
if(typeof( top.SF_FLAG_fnbMutex ) == "unknown")
return false;
}catch(e){
return false;
}
var retVal = (top.SF_FLAG_fnbMutex !== true);
top.SF_FLAG_fnbMutex = true;
return retVal;
}
if (SF_FUNC_WaitMutex() && SF_FUNC_ShouldDrawFnb() == true )
{
SF_FUNC_DrawFNB();
if (window.attachEvent )
{
window.attachEvent( "onunload", SF_FUNC_unloadFNB );
window.attachEvent( "onscroll", SF_FUNC_fnbonscroll);
window.attachEvent( "onresize", SF_FUNC_fnbonresize);
}
else
{
TMP_OLDUNLOAD_FUNC = window.onunload;
window.onunload = SF_FUNC_unloadFNB;
window.setInterval( "SF_FUNC_fnbonresize()", 10 );
}
}
}
"
+"\u6CE8\u9500"
+"\u62D6\u52A8"
+ ""+SF_FNB_MIN+""
+ ""+SF_FNB_CLOSE+"";
var TMP_OLDUNLOAD_FUNC = null;
var SF_flag_fnbmove = false;
function SF_FUNC_IsEasyLink()
{
if(typeof(SF_g_Config) != "undefined")
{
return true;
}
var tags = document.getElementsByTagName(''script'');
if(tags)
{
for(var i=0;i self.innerWidth-15){
return self.innerWidth-15;
}
else{
return self.innerWidth;
}
}
}
catch( e){return 0;}
}
function SF_FUNC_GetClientHeight()
{
try{
if(SF_FLAG_isIE){
var wHeight = document.body.clientHeight || document.documentElement.clientHeight;
if ( SF_FUNC_GetContentWidth() <= document.body.clientWidth-20 ){
return wHeight+20;
}
else{
return wHeight;
}
}
else{
if(SF_FUNC_GetContentWidth() > self.innerWidth-16){
return self.innerHeight-16;
}
else{
return self.innerHeight;
}
}
}
catch(e){return 0;}
}
function SF_FUNC_GetScrollPosX()
{
try{
if(SF_FLAG_isIE){
return document.body.scrollLeft;
}
else{
return window.pageXOffset;
}
}
catch(e){return 0;}
}
function SF_FUNC_GetScrollPosY()
{
try{
if ( SF_FLAG_isIE){
if (typeof window.pageYOffset != ''undefined''){
return window.pageYOffset;
}
else if (typeof document.compatMode != ''undefined'' &&
document.compatMode != ''BackCompat''){
return document.documentElement.scrollTop;
}
else if (typeof document.body != ''undefined''){
return document.body.scrollTop;
}
}
else{
return window.pageYOffset;
}
}
catch (e){return 0;}
}
function SF_FUNC_GetMousePosX( e )
{
try{
if (SF_FLAG_isIE){
return event.clientX+document.body.scrollLeft;
}else{
return e.screenX;
}
}
catch(e){return 0;}
}
function SF_FUNC_GetMousePosY( e )
{
try
{
if ( SF_FLAG_isIE ) {
return event.clientY+document.body.scrollTop;
}
else{
return e.screenY;
}
}
catch(e){return 0;}
}
function SF_FUNC_unloadFNB()
{
try
{
if(typeof( top.SF_FLAG_fnbMutex ) != "unknown")
top.SF_FLAG_fnbMutex = false;
}catch(e){
return ;
}
if ( TMP_OLDUNLOAD_FUNC != null )
{
TMP_OLDUNLOAD_FUNC();
}
}
function SF_FUNC_NoOp()
{
return false;
}
var lastx = 0;
var lasty = 0;
var lastscrollx = 0;
var lastscrolly = 0;
function SF_FUNC_startdragfnb( obj )
{
SF_flag_fnbmove=true;
if ( SF_FLAG_isIE )
{
lastx = parseInt(event.clientX+document.body.scrollLeft);
lasty = parseInt(event.clientY+document.body.scrollTop);
}
else
{
lastx = Event.screenX;
lasty = Event.screenY;
//lastx = parseInt(document.getElementById(SF_FNB_NAME).style.left);
//lasty = parseInt(document.getElementById(SF_FNB_NAME).style.top);
}
if ( document.attachEvent )
{
document.attachEvent( "onmousemove", SF_FUNC_dragfnb );
document.attachEvent( "onmouseup", SF_FUNC_stopdragfnb );
document.attachEvent( "onselectstart",SF_FUNC_NoOp);
}
else
{
document.addEventListener( "mousemove", SF_FUNC_dragfnb, true );
document.addEventListener( "mouseup", SF_FUNC_stopdragfnb, true );
}
obj.parentNode.style.backgroundColor=SF_FNB_hover; obj.parentNode.style.borderColor =SF_FNB_hover;
}
function SF_FUNC_dragfnb( e )
{
if(SF_flag_fnbmove)
{
var obj = get_fnb_obj();
if(!obj)
return;
var newx = SF_FUNC_GetMousePosX( e );
var newy = SF_FUNC_GetMousePosY( e );
var newleft = parseInt( obj.style.left )+( newx-lastx );
var newtop = parseInt( obj.style.top )+( newy-lasty );
if ( newleft < SF_FUNC_GetScrollPosX() )
{
newleft = SF_FUNC_GetScrollPosX();
}
else if ( newleft > get_fnb_maxleft() )
{
newleft = get_fnb_maxleft();
}
if ( newtop < SF_FUNC_GetScrollPosY() )
{
newtop = SF_FUNC_GetScrollPosY();
}
else if ( newtop > get_fnb_maxtop() )
{
newtop = get_fnb_maxtop();
}
obj.style.left = newleft+"px";;
obj.style.top = newtop+"px";;
lastx = newx;
lasty = newy;
}
}
function SF_FUNC_stopdragfnb(e)
{
SF_flag_fnbmove=false;
if ( document.detachEvent ){
document.detachEvent( "onmousemove", SF_FUNC_dragfnb );
document.detachEvent( "onmouseup", SF_FUNC_stopdragfnb );
document.detachEvent( "onselectstart",SF_FUNC_NoOp);
}
else{
document.removeEventListener( "mousemove", SF_FUNC_dragfnb, true );
document.removeEventListener( "mouseup", SF_FUNC_stopdragfnb, true );
}
var fnbWin = get_fnb_obj();
if(!fnbWin)
return;
fnbWin.style.backgroundColor=SF_FNB_normal;
fnbWin.style.borderColor=SF_FNB_normal;
}
function SF_FUNC_fnbonscroll()
{
var newX;
var newY;
var finalX;
var finalY;
var width;
var fnbWin = get_fnb_obj();
if ( fnbWin != null )
{
newX = SF_FUNC_GetScrollPosX();
newY = SF_FUNC_GetScrollPosY();
finalX = parseInt( fnbWin.style.left )+( newX-lastscrollx );
if ( finalX < SF_FUNC_GetScrollPosX() )
{
finalX = SF_FUNC_GetScrollPosX();
}
else if ( finalX > get_fnb_maxleft() )
{
finalX = get_fnb_maxleft();
}
finalY = parseInt( fnbWin.style.top )+( newY-lastscrolly );
if ( finalY < SF_FUNC_GetScrollPosY())
{
finalY = SF_FUNC_GetScrollPosY();
}
else if ( finalY > get_fnb_maxtop())
{
finalY = get_fnb_maxtop();
}
fnbWin.style.top = finalY+"px";
fnbWin.style.left = finalX+"px";
lastscrollx = newX;
lastscrolly = newY;
}
}
var ___fnbResizeCounter = false;
function SF_FUNC_fnbonresize()
{
var fnbWin = get_fnb_obj();
if(!fnbWin)
return;
if ( SF_FLAG_isIE )
{
___fnbResizeCounter = !___fnbResizeCounter;
if ( !___fnbResizeCounter )
{
fnbWin.style.left = get_fnb_maxleft();
fnbWin.style.top = 5;
}
}
else
{
if ( parseInt( fnbWin.style.left ) > get_fnb_maxleft() )
{
fnbWin.style.left = get_fnb_maxleft();
}
if ( parseInt( fnbWin.style.top ) > get_fnb_maxtop() )
{
fnbWin.style.top = get_fnb_maxtop();
}
}
}
function SF_FUNC_DrawFNB()
{
var zIndex = 19327352831;
if ( navigator.userAgent.toLowerCase().indexOf( "opera" ) != -1 )
{
zIndex = 0;
}
var SF_FNB_HTML = "" +
SF_FNB_contenthtml +
"" ;
var scriptNodes = document.getElementsByTagName("script");
var nodesLen = scriptNodes.length;
var target = null;
for(var i=0; i< FramesArr.length; ++i)
{
if( typeof FramesArr[i].frameElement != "undefined" &&
typeof FramesArr[i].frameElement.tagname != "undefined" &&
FramesArr[i].frameElement.tagName.toUpperCase() == "FRAME")
{
ShouldDrawFnb = false;
break;
}
}
if( SF_FUNC_GetClientWidth() < SF_FNB_WIDTH ||
SF_FUNC_GetClientHeight() < SF_FNB_HEIGHT )
{
ShouldDrawFnb = false;
}
return ShouldDrawFnb;
}
function SF_FUNC_WaitMutex()
{
try
{
if(typeof( top.SF_FLAG_fnbMutex ) == "unknown")
return false;
}catch(e){
return false;
}
var retVal = (top.SF_FLAG_fnbMutex !== true);
top.SF_FLAG_fnbMutex = true;
return retVal;
}
if (SF_FUNC_WaitMutex() && SF_FUNC_ShouldDrawFnb() == true )
{
SF_FUNC_DrawFNB();
if (window.attachEvent )
{
window.attachEvent( "onunload", SF_FUNC_unloadFNB );
window.attachEvent( "onscroll", SF_FUNC_fnbonscroll);
window.attachEvent( "onresize", SF_FUNC_fnbonresize);
}
else
{
TMP_OLDUNLOAD_FUNC = window.onunload;
window.onunload = SF_FUNC_unloadFNB;
window.setInterval( "SF_FUNC_fnbonresize()", 10 );
}
}
}
4月6日上午,中国地震局举行第49期党校班开班式。局党组书记、局长郑国光专门审定了党校班培训方案,并对加强党校工作提出明确要求。党组成员、副局长、直属机关党委书记阴朝民出席开班式并讲话。
阴朝民从学什么、怎么学、求实效三方面作开班讲话。他指出,必须坚持党校姓党这一根本原则,强化党的理论教育和党性教育,做到在理论素养、党性锻炼、战略思维、世界眼光方面有所提高。要认真学习党的理论和路线方针政策,学习马克思列宁主义、毛泽东思想基本问题,学习中国特色社会主义理论体系,学习当代世界经济、政治、科技、法制、军事、思潮、民族宗教以及其他方面的必备知识,坚持不懈地用党的理论创新成果武装头脑。要认真学习习近平总书记系列重要讲话精神和治国理政新理念新思路新战略。特别要认真学习贯彻习近平总书记关于防灾减灾救灾重要论述和关于防震减灾重要批示指示,领会总书记关于防灾减灾救灾工作“两个坚持、三个转变”新思想,通过学习提高认识、转变观念、强化能力。要认真学习方法论,学习把握习近平总书记重要讲话蕴含的战略思维、辩证思维、系统思维、创新思维和底线思维,提高推动事业发展的能力。
阴朝民强调,要提高学习质量,必须做到集中学习与自学相结合,理论学习与实践学习相结合,教学相长,学学相长。坚持问题导向学,查找自身在理论、知识和能力方面的不足,缺什么补什么,做到有的放矢地学习。坚持立足岗位学,注重结合自身工作实际,探索和改进本职工作的方法和措施。坚持深入思考学,善于思考研究,善于通过学习解决防震减灾事业发展深层次问题。坚持持续常态学,切实把学习当作一种责任和习惯,坚持终生学习,在学习中进步,在实践中成长。强调要切实通过学习,增强党性修养,丰富理论知识,提高工作能力。强调各位学员必须严格遵守学习纪律,加强自我管理、自我教育和自我服务,确保培训班取得圆满成功。
开班式由直属机关党委常务副书记唐景见主持。人事教育司、直属机关党委负责同志,第49期党校班全体学员参加了开班式。
(责任编辑:刘超英)