﻿// JScript File

/**************************************
* http://vertical-scroller.vbarsan.com/
*    This notice may not be removed 
**************************************/

//-- Begin Scroller's Parameters and messages -->
//scroller's width
var swidth=420;

//scroller's height
var sheight=117;


//scroller's speed 
var sspeed=20;
var restart=sspeed;
var rspeed=sspeed;

//scroller's pause 
var spause=6000;

//scroller's background
var sbcolor="#F5F5F5";

//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]='<strong>YRCI and LMI awarded DVA Contract</strong><br><em>Fairfax, VA (March 2009)</em> &ndash; YRCI CM&amp;P, along with its teammate LMI Government Solutions, has been awarded the Global Integrated Product Team Support contract with the Department of Veterans Affairs, Center for Acquisition Innovation (CAI) Business Services Office (BSO). YRCI CM&P’s team will provide the Department of Veterans Affairs, Integrated Product Teams (IPT) with facilitation support inclusive of acquisition subject matter expertise. IPTs are created for all acquisition activities in excess of 5 million dollars. The work will be performed throughout the nation in support of the VA’s buying activities that include medical, construction, cemeteries, and IT.</p>';									  
singletext[1]='<strong>Integrity and YRCI awarded GSA BPA</strong><br><em>Fairfax, VA (March 2009)</em> &ndash; YRCI CM&amp;P, as a major subcontractor to Integrity Management Consulting, was awarded the primary Blanket Purchase Agreement (BPA) to provide acquisition management support services to the General Services Administration (GSA) in all 11 GSA regions that cover all states and territories. YRCI CM&amp;P will provide support that includes acquisition planning, acquisition document development, proposal evaluation assistance, contract administration, contract closeout, acquisition policy support, and competitive sourcing support. This BPA will also be used to support specific projects related to the American Recovery and Reinvestment Plan of 2009</p>';									  
singletext[2]='<strong>Contract with USDA Expanded</strong><br><em>Fairfax, VA (March 2009)</em> &ndash; YRCI CM&amp;P was awarded two new orders to expand its support of the United States Department of Agriculture (USDA), Farm Service Agency (FSA). YRCI CM&amp;P has been providing the FSA with procurement support services since 2005, and is extremely pleased to take on these additional requirements.</p>';									  
singletext[3]='<strong>YRCI and Addx to Support VISN</strong><br><em>Fairfax, VA (March 2009)</em> &ndash; YRCI CM&amp;P has partnered with Addx Corporation on a recently awarded contract to provide acquisition and contract management support to the Veterans Integrated Service Network (VISN) 16/South Central VA Healthcare Network. VISN 16 covers a vast area of 170,000 square miles, serving veterans in Oklahoma, Arkansas, Louisiana, Mississippi and parts of Texas, Missouri, Alabama and Florida.  More than 445,000 veterans annually seek care from VISN 16&rsquo;s ten medical centers and 37 community based outpatient clinics. As a veteran-owned company that has served the VA since 2004, YRCI CM&amp;P is very proud to continue and expand its support of the VA.</p>';									  
singletext[4]='<strong>YRCI accepts Workplace Excellence award</strong><br><em>Fairfax, VA (October 2008)</em> &ndash; For the second year in a row, YRCI was proud to accept our Workplace Excellence award this past June.  This award is given to local businesses which are evaluated through a competitive application process and must meet specific organizational requirements.  The Alliance for Workplace Excellence is a non-profit group that supports the pursuit of workplace excellence with training and education, awards of recognition and community awareness.   The Alliance believes that companies that achieve Workplace Excellence enjoy loyal and healthy workforces, valuable community relationships and reduced use of natural resources, and have a competitive advantage in today&rsquo;s marketplace.</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();
    }
}
//-- end Algorithm -->
