"
+"
\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 ); } } }
2017年查体几点说明(在职、离退休、所长)
一.2017年查体,所有老师均可自由选择在齐鲁医院、山大二院或者校医院查体,不再有博导正处之分,只分男女、年龄(40以上、40以下),请老师们务必认真仔细查看通知及附件内容表格,完善信息!
二.所有在职人员事编或非事编及离退休老师务必将(年龄、身份证号、查体医院、查体套餐、查体校区,是否电子归档)填写清楚在1月8日(周一)下班前报送本所所长或中心主任处。
三.各所长及中心主任将本所、中心老师们(在职、离退休)上报的完整信息汇总后在1月9日(周二)下班前务必发送到mfh@sdu.edu.cn邮箱,院办再汇总整理后逐一上报学校和各医院!
四.据往年查体时间安排是先离退休后在职,具体查体时间应该在2017年的年末及2018年开学以后依次安排,各查体医院是依据各单位报名的顺序及人数会做出具体查体时间,会另行通知!
五.健康查体关乎于每位老师的自身健康,请老师们、所长主任们一定在上述规定的时间内完善信息上报!逾期所误请自理!
祝老师们身体康健!
院办
2018.1.5