var pausecontent2=new Array() pausecontent2[0]='  حمایت علمی دبیرخانه کنفرانس ICTM از اولین سمینار تخصصی مدیریت استراتژیک دانش    (30 خرداد 1389)' pausecontent2[1]='  کنفرانس ششم با استقبال گرم مدیران سازمانها و موسسات، اساتید و دانش پژوهشان، کارشناسان و متخصصین حوزه انفورماتیک کشور برگزار شد.    (06 اسفند 1388)' pausecontent2[2]='  انعکاس گسترده برگزاری کنفرانس در شبکه های تلویزیونی، خبرگزاریها و رسانه های داخلی و بین المللی کشور    (06 اسفند 1388)' pausecontent2[3]='  قابل توجه شرکت کنندگان در کنفرانس    (03 اسفند 1388)' pausecontent2[4]='  فهرست نهايي و تفکیکی مقالات پذيرفته شده در ششمين کنفرانس بين المللي مديريت فناوري اطلاعات و ارتباطات اعلام شد    (27 بهمن 1388)' pausecontent2[5]='  اعلام نتایج داوری مقالات از تاریخ 18 بهمن ماه آغاز می گردد.    (15 بهمن 1388)' pausecontent2[6]='  اسامی تعدادی از سنخنرانان کلیدی کنفرانس اعلام شد    (20 دي 1388)' pausecontent2[7]='  مهلت ارسال مقالات پایان یافت    (26 دي 1388)' pausecontent2[8]='  مهلت ارسال مقالات تمديد شد    (30 آذر 1388)' pausecontent2[9]='  دانشگاه های لهارو فرانسه، UEL لندن و USM مالزی به جمع حامیان علمی کنفرانس پیوستند    (16 آذر 1388)' pausecontent2[10]='  انجمن انفورماتیک ایران به جمع حامیان کنفرانس پیوست    (14 آذر 1388)' pausecontent2[11]='  سخنرانی و ارائه کارگاه آموزشی دکتر یوسف پادگانه در کنفرانس    (08 آذر 1388)' pausecontent2[12]='  سخنرانی Addor Jean-Pierre در ششمین کنفرانس بین المللی مدیریت فناوری اطلاعات    (02 آذر 1388)' pausecontent2[13]='  شرکت مگفا به جمع حامیان کنفرانس پیوست    (01 آذر 1388)' pausecontent2[14]='  دعوت از متخصصان، اساتید و شرکت های فناوری اطلاعات جهت ارائه کارگاه آموزشی    (24 آبان 1388)' pausecontent2[15]='  تاریخ های مهم ششمین کنفرانس مدیریت فناوری اطلاعات اعلام شد    (14 بهمن 1388)' pausecontent2[16]='  اصلاح الگوی مصرف نباید به حذف بودجه ITمنتج شود    (24 آبان 1388)' pausecontent2[17]='  اصلاح الگوي مصرف بدون IT امكان‌پذير نيست    (22 خرداد 1388)' pausecontent2[18]='  فناوري اطلاعات نقش مهمي در اصلاح الگوي مصرف دارد    (22 خرداد 1388)' function pausescroller(content, divId, divClass, delay){ this.content=content //message array content this.tickerid=divId //ID of ticker div to display information this.delay=delay //Delay between msg change, in miliseconds. this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is) this.hiddendivpointer=1 //index of message array for hidden div document.write('
'+content[0]+'
') var scrollerinstance=this if (window.addEventListener) //run onload in DOM2 browsers window.addEventListener("load", function(){scrollerinstance.initialize()}, false) else if (window.attachEvent) //run onload in IE5.5+ window.attachEvent("onload", function(){scrollerinstance.initialize()}) else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec setTimeout(function(){scrollerinstance.initialize()}, 500) } // ------------------------------------------------------------------- // initialize()- Initialize scroller method. // -Get div objects, set initial positions, start up down animation // ------------------------------------------------------------------- pausescroller.prototype.initialize=function(){ this.tickerdiv=document.getElementById(this.tickerid) this.visiblediv=document.getElementById(this.tickerid+"1") this.hiddendiv=this.hiddendiv=document.getElementById(this.tickerid+"2") this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv)) this.getinline(this.visiblediv, this.hiddendiv) this.hiddendiv.style.visibility="visible" var scrollerinstance=this this.tickerdiv.onmouseover=function(){scrollerinstance.mouseoverBol=1} this.tickerdiv.onmouseout=function(){scrollerinstance.mouseoverBol=0} setTimeout(function(){scrollerinstance.animateup()}, this.delay) } // ------------------------------------------------------------------- // animateup()- Move the two inner divs of the scroller up and in sync // ------------------------------------------------------------------- pausescroller.prototype.animateup=function(){ var scrollerinstance=this if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){ this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px" this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px" setTimeout(function(){scrollerinstance.animateup()}, 10) } else{ this.getinline(this.hiddendiv, this.visiblediv) this.swapdivs() setTimeout(function(){scrollerinstance.setmessage()}, this.delay) } } // ------------------------------------------------------------------- // swapdivs()- Swap between which is the visible and which is the hidden div // ------------------------------------------------------------------- pausescroller.prototype.swapdivs=function(){ var tempcontainer=this.visiblediv this.visiblediv=this.hiddendiv this.hiddendiv=tempcontainer } pausescroller.prototype.getinline=function(div1, div2){ div1.style.top=this.visibledivtop+"px" div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px" } // ------------------------------------------------------------------- // setmessage()- Populate the hidden div with the next message before it's visible // ------------------------------------------------------------------- pausescroller.prototype.setmessage=function(){ var scrollerinstance=this if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it) setTimeout(function(){scrollerinstance.setmessage()}, 100) else{ var i=this.hiddendivpointer var ceiling=this.content.length this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1 this.hiddendiv.innerHTML=this.content[this.hiddendivpointer] this.animateup() } } pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any if (tickerobj.currentStyle) return tickerobj.currentStyle["paddingTop"] else if (window.getComputedStyle) //if DOM2 return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top") else return 0 }