// JavaScript Document //Specify the marquee's width (in pixels) var marqueewidth="500px" //Specify the marquee's height var marqueeheight="50px" //Specify the marquee's marquee speed (larger is faster 1-10) var marqueespeed=1 //Pause marquee onMousever (0=no. 1=yes)? var pauseit=1 var marqueecontent='

December 15, 2014- Mississippi State University (MSU) plans to redesign Statics, an engineering mechanics course enrolling ~350 students annually in 11 sections of ~35 students each. MSU will be using YourOtherTeacher.com to provide the online statics lessons to the students.[click here for details]

January 14, 2015- Online Tutoring and Supplemental Instruction Offers Unique New Opportunity To Help Shy Children Excel Academically[click here for details]

February 7, 2015- With Class Sizes Growing Nationwide, Online Tutoring and Supplemental Instruction Offer a Cost-Effective Way For Parents To Help Kids Succeed In School[click here for details]

March 30, 2015- HOMESCHOOLERS FIND LEARNING OPPORTUNITIES ONLINE FROM ONLINE SUPPLEMENTAL INSTRUCTION COMPANY[click here for details]

April 23, 2015- SCHOOLS AND FAMILIES WHO ARE NOT ELIGIBLE FOR SERVICES UNDER NO CHILD LEFT BEHIND ACT LOOK TO NEW EDUCATIONAL RESOURCE[click here for details]

January 16, 2015- For Back-to-School Adults, Online Tutoring and Supplemental Teaching Bridges Gaps [click here for details]

February 9, 2015- With Parents Facing Transportation Crunch, Online Tutoring Fills the Gap[click here for details]

March 2, 2015- With Academic Assistance Resources Stretched to the Limit, Online Tutoring and Supplemental Instruction Service Offers Schools a Cost-Effective Option[click here for details]

April 25, 2015- Cost-Effective Blackboard Instruction from the Comfort of Home
Available from New Online Tutoring and Supplemental Instruction Company
[click here for details]

January 16, 2015- BLACKBOARD TEACHING: AN OLD METHOD WITH AN INTERNET-AGE TWIST FROM NEW ONLINE TUTORING AND SUPPLEMENTAL INSTRUCTION COMPANY[click here for details]

February 16, 2011- New Online Tutoring and Supplemental Instruction Company Fills a Gap in “NO CHILD LEFT BEHIND” Implementation[click here for details]' ////NO NEED TO EDIT BELOW THIS LINE//////////// marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS var copyspeed=marqueespeed var pausespeed=(pauseit==0)? copyspeed: 0 var iedom=document.all||document.getElementById var actualheight='' var cross_marquee, ns_marquee function populate(){ if (iedom){ cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee cross_marquee.style.top=parseInt(marqueeheight)+8+"px" cross_marquee.innerHTML=marqueecontent actualheight=cross_marquee.offsetHeight } else if (document.layers){ ns_marquee=document.ns_marquee.document.ns_marquee2 ns_marquee.top=parseInt(marqueeheight)+8 ns_marquee.document.write(marqueecontent) ns_marquee.document.close() actualheight=ns_marquee.document.height } lefttime=setInterval("scrollmarquee()",40) } window.onload=populate function scrollmarquee(){ if (iedom){ if (parseInt(cross_marquee.style.top)>(actualheight*(-1)+8)) cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px" else cross_marquee.style.top=parseInt(marqueeheight)+8+"px" } else if (document.layers){ if (ns_marquee.top>(actualheight*(-1)+8)) ns_marquee.top-=copyspeed else ns_marquee.top=parseInt(marqueeheight)+8 } } if (iedom||document.layers){ with (document){ if (iedom){ write('
') write('
') write('
') } else if (document.layers){ write('') write('') write('') } } } function pause(numberMillis) { var now = new Date(); var exitTime = now.getTime() + numberMillis; while (true) { now = new Date(); if (now.getTime() > exitTime) return; } }