



// Scrollers width here (in pixels)
var scrollerwidth="318px"

// Scrollers height here
var scrollerheight="85px"

// Scrollers speed here (larger is faster 1-10)
var scrollerspeed=1



// Scrollers content goes here! Keep all of the message on the same line!


var scrollercontent='<left><font face="Times New Roman, Times, serif" color="black" size="2">  It is an excellent service and provide convenience and good help.<br><br> This service is great because it saves me a lot of time from having to call or come to campus. Most of time my questions are easy to answer. <br><br> I enjoyed having fast answers from an expert. <br><br> Very Knowledgeable and friendly. Extremely helpful.<br><br> I enjoyed the chat very much as it has help me to know more about your university and also got more of what I could not find.<br><br> It was fast and easy. A good way to get the info without sitting on hold or being transferred. Great service.<br><br> I belive this is a wonderful service. The person with whom I chatted had access to my records and gave me very specific answers. He also referred me to the office I needed to communicate with. I sincerely hope you continue with this service because it is great.<br><br> I like this chat as tool because it is more immediate and I do not have to wait on the phone to get switched from extension to extension. Also, it is a good resource for those who are not at UNM main campus. Very resourceful, thank you!<br><br> I have used Chat services with UNM and other colleges. I think it is the best idea around. I generally get immediate responses-that means help right now. I appreciate not having to lose time struggling through phone menus and then having to wait more or leave voicemails and then wait for someone to call. Chat is great.<br><br> This is the most convenient application I have ever used to get my financial aid questions answered. I have used this service three or four times and i am always pleased with the information and the convenience. i love being able to use the internet instead of the phone as well as talk to real person.</font><left>'
var pauseit=0


// Change nothing below!

scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed down by 1 for NS
var copyspeed=scrollerspeed
var iedom=document.all||document.getElementById
var actualheight=''
var cross_scroller, ns_scroller
var pausespeed=(pauseit==0)? copyspeed: 0

function populate(){
if (iedom){
cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
cross_scroller.style.top=parseInt(scrollerheight)+9+"px"
cross_scroller.innerHTML=scrollercontent
actualheight=cross_scroller.offsetHeight
}
else if (document.layers){
ns_scroller=document.ns_scroller.document.ns_scroller2
ns_scroller.top=parseInt(scrollerheight)+9
ns_scroller.document.write(scrollercontent)
ns_scroller.document.close()
actualheight=ns_scroller.document.height
}
lefttime=setInterval("scrollscroller()",80)
}
window.onload=populate

function scrollscroller(){

if (iedom){
if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8))
cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
else
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
}
else if (document.layers){
if (ns_scroller.top>(actualheight*(-1)+8))
ns_scroller.top-=copyspeed
else
ns_scroller.top=parseInt(scrollerheight)+8
}
}

if (iedom||document.layers){
//window.setTimeout('with (document)',100000000000);
with (document){
if (iedom){
write('<div style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed">')
write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">')
write('<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>')
write('</ilayer>')
}
}
}
