

// Distributed by http://www.hypergurl.com

// Scrollers width here (in pixels)
var scrollerwidth="220px"

// Scrollers height here
var scrollerheight="420px"

// 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='<font face="Verdana" color="black" size="1"><p>IMPACT consistently went above and beyond in their efforts to deliver a difficult project in a timely fashion, getting the right resources available for the job on short notice when we needed them. The end results have our business community very happy indeed.<br><br>R. Moore,  EMI</p><br><br><p>I highly recommend the Impact Software team. They provided me with high quality technical software consulting services during my employment with Vodafone.  The Impact Software team brought creative solutions to our business need, always operated with high integrity and professionalism and most importantly to me, consistently delivered successful results.<br><br>Top qualities: Great Results, High Integrity, Creative<br><br>C.  Meyrath,  Vodafone</p><br><br><p>I&lsquo;ve worked with Impact Software since 2000 on several internet and mobile portal projects.  They were a supplier of qualified IT consultants. They are, by far, some of the best technical professionals I&lsquo;ve ever worked with and IMPACT has great integrity. I would work with Impact Software again.<br><br>H. Arvesen, Vodafone</p><br><br><p>Impact Software is the best outsourced software development companies I have worked with. They provide very personal service, excellent rates and proven solutions.<br><br> Top qualities: Great Results, Good Value, High Integrity<br><br> A. Scholten,  NovusEdge</p><br><br><p> I whole-heartedly endorse IMPACT software team. They provide outstanding quality and value to clients. They have consistently delivered under tight timelines will little guidance and is always a joy to work with. The access to the right skills, at the right time and the right price that IMPACT brings would be an asset to any organization. <br> <br>Top qualities: Great Results, Good Value, On Time <br> <br>C. O&lsquo;Donnell, The Hackett Group </p><br><br><p>IMPACT has consistently been reliable to deliver quality results under any pressure circumstance. Given their cost model, it&lsquo;s an unmatched value proposiion.<br><br>I&lsquo;ve used other developers in the past, some don&lsquo;t get it (understand what we&lsquo;re trying to do),  some partly get it,  but IMPACT totally get it !!! Great Job by IMPACT !!<br><br>E. Leh,  5Square Systems.</p><br><br><p>IMPACT provided offshore engineering and qa resources to supplement my in house engineering team. Their hiring was exemplary and the staff they brought us was highly productive. I would not hesitate to use IMPACT&lsquo;s services again in the future.<br><br>A. Ettaro, 5Square Systems</p><br><br><p>IMPACT consistently provided quality work on a tight schedule. They were able to engage high level tasks without micromanagement, and the results have been successfully incorporated into products. Some of the work that we did was &lsquo;rocket science&lsquo; but we always got something that worked.<br><br>M. Harding, Edentree Technologies.</p><br><br><p>Bluebeam engaged Impact to help solve a problem - how do we expand our product lines with limited resources. Outsourcing to Impact was the perfect solution - we were able to develop a new product line while focusing our own engineering resources on our core products. Impact was flexible and diligent, allowing us to begin development within months and get a product ready to market in under a year. For any technology company looking to grow with limited resources, Impact is the way to go.<br><br>R.Lee, Bluebeam Software.</p><br><br><p>Rightsline have been engaging IMPACT Software as our offshore software development arm since March, 2004.   They have exceeded our expectations and have never let us down.   In this industry, businesses have to react quickly,  meet tight deadlines,  and be proactive as well as responsive.<br><br>IMPACT Software has helped us achieve such objectives.  Their work ethics and quality are top-notched.   They have been an invaluable development partner.<br><br>R. Reeder, Rightsline.</p></font>'

var pauseit=1


// 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)+8+"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)+8
ns_scroller.document.write(scrollercontent)
ns_scroller.document.close()
actualheight=ns_scroller.document.height
}
lefttime=setInterval("scrollscroller()",20)
}
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){
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>')
}
}
}


