var swidth=190;

//scroller's height
var sheight=1;


//scroller's speed 
var sspeed=3;
var restart=sspeed;
var rspeed=sspeed;

//scroller's pause 
var spause=2000;


//messages: set your own; use as many as you'd like; set up Hyperlinks to
//URLs as you normally do: <a target=... href="... URL ...">..message..</a>;
var singletext=new Array();
singletext[0]="";
singletext[1]="<img src='graphics/logos/logo_sapient.gif' width='164' height='43' /><p class='front'>&ldquo;The fact that we have a strategic partner versus a traditional provider is a paradigm shift.  VISANOW has enabled us to take out mobility thinking to the next level.&rdquo; </p><p><strong>Senior HR Manager, Sapient</strong></p><p><a href='services/casestudy_sapient.asp'>Case Study</a></p>";
singletext[2]="<img src='graphics/logos/logo_atmi.gif' width='164' height='39' /><p class='front'>&ldquo;Hands down, we're very pleased with the VISANOW Web-based model.  If I polled all of our active and non-active employees who went through the process they would agree.  The control and empowerment ATMI employees have is priceless&rdquo; </p><p><strong>Talent Acquisition Manager, ATMI</strong></p><p><a href='services/casestudy_atmi.asp'>Case Study</a></p>";
singletext[3]="<img src='graphics/logos/logo_diebold.gif' width='149' height='25' /><p class='front'>&ldquo;VISANOW has become a critical part of Diebold's global hiring team.  VISANOW has made my life so much easier and made moving forward easier for the company.&rdquo; </p><p><strong>Snr. International HR Representative, Diebold</strong></p><p><a href='services/casestudy_diebold.asp'>Case Study</a></p>";
singletext[4]="<img src='graphics/logos/logo_emeter.gif' width='133' height='52' /><p class='front'>&ldquo;It's just a godsend to be able to check all the data in one place.  And, I automatically receive email alerts from VISANOW indication when there are filing dates; upcoming expirations, documents needed or other critical steps I need to be aware of.&rdquo; </p><p><strong>Senior Director of Human Resources, eMeter</strong></p><p><a href='services/casestudy_emeter.asp'>Case Study</a></p>";
singletext[5]="<img src='graphics/logo_front_aa.gif' width='190' height='72' /><p class='front'>&ldquo;VISANOW provides a more open and transparent service.  Our employees know exactly where their cases stand at any given time, and they know that they can expect to have their questions answered in a timely </br>manner.&rdquo; </p><p> <strong>Specialist, Immigration, American Airlines</strong></p>";
singletext[6]="<img src='graphics/logos/TEL.gif' width='190' height='72' /><p class='front'>&ldquo;Tokyo Electron views VisaNow as a long term value added partner in the company's supply chain network. VISANOW is helping Tokyo Electron streamline its immigration processing procedures and obtain substantial direct and indirect cost savings while delivering stellar performance results for the visa beneficiaries themselves.&rdquo; </p><p> <strong>Corporate Counsel, Tokyo Electron</strong></p><p><a href='services/casestudy_tokyo_electron.asp'>Case Study</a></p>";
singletext[7]="<img src='graphics/logos/Keynote.gif' width='190' height='72' /><p class='front'>&ldquo;VISANOW stands behind its reputation. That has been our experience with them. It's the way they live - proactive, responsive and committed to our goals.&rdquo; </p><p> <strong>HR Manager, Keynote Systems</strong></p><p><a href='services/casestudy_keynote.asp'>Case Study</a></p>";
singletext[8]="<img src='graphics/logos/PB.gif' width='190' height='72' /><p class='front'>&ldquo;VISANOW has provided consistently accurate and responsive legal advice in real time, as well as continually identifying ways in which we can do business more efficiently while adding value for our internal clients.&rdquo; </p><p><strong>Advisor, Immigration and HR Legal Administration, Pitney Bowes</strong></p>";
//singletext[...]='...';
//-- end Parameters and message -->

//-- begin: Scroller's Algorithm -->
var ii=0;
function goup(){if(sspeed!=rspeed*16){sspeed=sspeed*2;restart=sspeed;}}

function start()
{
    if(document.getElementById){ns6div=document.getElementById('iens6div');ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[0];sizeup=ns6div.offsetHeight;ns6scroll();}
    else 
    if(document.layers){ns4layer=document.ns4div.document.ns4div1;ns4layer.top=sheight;ns4layer.document.write(singletext[0]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();}
    else 
    if(document.all){iediv=iens6div;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[0];sizeup=iediv.offsetHeight;iescroll();}}
    function iescroll(){if(iediv.style.pixelTop>0&&iediv.style.pixelTop<=sspeed){iediv.style.pixelTop=0;setTimeout("iescroll()",spause);}else 
    if(iediv.style.pixelTop>=sizeup*-1){iediv.style.pixelTop-=sspeed+"px";setTimeout("iescroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;iediv.style.pixelTop=sheight+"px";iediv.innerHTML=singletext[ii];sizeup=iediv.offsetHeight;iescroll();}}
    function ns4scroll(){if(ns4layer.top>0&&ns4layer.top<=sspeed){ns4layer.top=0;setTimeout("ns4scroll()",spause);}else 
    if(ns4layer.top>=sizeup*-1){ns4layer.top-=sspeed;setTimeout("ns4scroll()",100);}else{if(ii==singletext.length-1)ii=0;else ii++;ns4layer.top=sheight;ns4layer.document.write(singletext[ii]);ns4layer.document.close();sizeup=ns4layer.document.height;ns4scroll();}}
    function ns6scroll(){if(parseInt(ns6div.style.top)>0&&parseInt(ns6div.style.top)<=sspeed){ns6div.style.top=0;setTimeout("ns6scroll()",spause);}else 
    if(parseInt(ns6div.style.top)>=sizeup*-1){ns6div.style.top=parseInt(ns6div.style.top)-sspeed+"px";setTimeout("ns6scroll()",100);}
    else{if(ii==singletext.length-1)ii=0;else ii++;
    ns6div.style.top=sheight+"px";ns6div.innerHTML=singletext[ii];sizeup=ns6div.offsetHeight;ns6scroll();}}