// JavaScript Document

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

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

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

// 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='<p align="justify"><font face="Verdana" color="#000000" size="1">&quot;Thanks for the excellent service!....thanks for all the help and advice recently in making our email-hosting changeover pass unnoticed...&quot; <br><br>John H Dixon<br>B.D. Manager<br>Symmetry Communications Plc</font><p align="justify"><font color="#000000" size="1" face="Verdana">===============================</font><p align="justify"><font size="1" face="Verdana">&quot;I would like to thank you and your company for the work you have done to update my website</font><p><font size="1" face="Verdana"><a href="http://www.beautyisyours.org.uk/" target="_blank">www.beautyisyours.org.uk</a></font></p><p><font size="1" face="Verdana">there were many alterations and additions of new treatments</font></p><p><font size="1" face="Verdana">and the updates. Theses were all done quickly and efficiently with no disruption to the site.</font></p><p><font size="1" face="Verdana">I will not hesitate in recommending others to you company who wish to have any work on or developing their own sites.&quot;</font></p><p><font size="1" face="Verdana">With regards,</font></p><p><font size="1" face="Verdana">Sue Bryan<br>  Beauty is Yours</font></p><p><font size="1" face="Verdana">===============================</font></p><p><font size="1" face="Verdana">You recently designed and produced our e-newsletter template. I must say your  work was first class.</font></p><p><font size="1" face="Verdana">Not only did you tailor the imaging to be in keeping with our company website and other marketing tools buth the solution is professional and user friendly.</font></p><p><font size="1" face="Verdana">I will have no hesitation in recommending you to others as you have been professional, reliable and above all provided a quality service.</font></p><p><font size="1" face="Verdana">Yours sincerly</font></p><p><font size="1" face="Verdana">Oliver Thompson<br>Managing Director<br>Transphorm Ltd</font></p><p><font size="1" face="Verdana">===============================</font></p><p><font size="1" face="Verdana">Digitactive provides a complete web and e-solution service for our business, the service that they provide is totally comprehensive and more importantly for web novices like ourselves, is easy to understand. Digitactive are always at the end of the telephone and are contactable whenever we need them. In short, nothing seems to be too much trouble</font></p><p><font size="1" face="Verdana">The benefit to our business has been immeasurable as we are now able to promote our business through a totally new medium to a virtually untapped market.</font></p><p><font size="1" face="Verdana">I would recommend Digitactive to all who ask</font></p><p><font size="1" face="Verdana">Robert Gold<br>Director<br>Oakwood Group</font></p><p><font size="1" face="Verdana">===============================</font></p><p><font size="1" face="Verdana">Thank you very much Digitactive. As a city recruitment firm it is imperative that our IT and Internet presence is always available. We find your work to be very efficient and effective.</font></p><p><font size="1" face="Verdana">You also do not complicate matters by using very straight forward, easy to understand language.</font></p><p><font size="1" face="Verdana">We have found that you listen and understand our requirements. <font size="1" face="Verdana">Richard Lexton<br>Managing Director<br>Bull Resourcing Ltd</font></p>'

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>')
}
}
}