
/*
Random Content Script- By JavaScript Kit(http://www.javascriptkit.com) 
Over 200+ free JavaScripts here!
*/

function fast_facts(){
var fastfacts=new Array()
//specify random content below.
fastfacts[1]='<b>Organizations that focus on service quality garner higher customer satisfaction scores than those that focus solely on cost control.<br>(Gartner Research)</b>'
fastfacts[2]='<b>Interactive voice response (IVR) acceptance is continuing to rise with the growth of self-help facilities.</b>'
fastfacts[3]='<b>In 2002, enterprises that drew hard alignment between technology investments and customer management objectives reduced costs by 10 percent and improved service levels by 20 percent.<br>(Gartner Measurement)</b>'
fastfacts[4]='<b>By 2003, universal-queue servers will replace stand-alone-software automatic call distribution (ACD) and computer-telephony integration (CTI) servers in the majority of new call centers (70% probability)<br>Steven Cain, CRM analyst.</b>'
fastfacts[5]='<b>The contact center is the first place in the enterprise that voice over IP will be cost-justified.<br> (New York Times, 10/12/03)</b>'
fastfacts[6]='<b>Call wait time, in top performing call centers, does not exceed 20 to 25 seconds.<br> (Steve Cain, Call Center Analyst)</b>'
fastfacts[7]='<b>To improve queue time, use staff management software to achieve optimal alignment of agent count with enterprise call demand.</b>'
fastfacts[8]='<b>To improve first-contact resolution, put priority on just-in-time agent training and agent access to the customer\'s history over all touch points.</b>'
fastfacts[9]='<b>Customers tolerate longer wait times if they get resolution on the first call.</b>'
fastfacts[10]='<b>As call complexity increases, so does cost.  Centers with low call complexity have an average cost of $2.97 per call, those with highly complex calls average $6.60.<br> (Gartner Measurement, July 2003)</b>'
fastfacts[11]='<b>Simplifying service pays off.  In technical-support centers, the per-call cost ranges from $13.70 to $18.71 due to complexity of handling calls.<br> (Garner Measurement, July 2003)</b>'
fastfacts[12]='<b>Voice Over IP, which essentially turns computers into phones, is driving a number of small phone companies. Cable companies like Time Warner are starting to offer VoIP calling plans.</b>'
fastfacts[13]='<b>Microsoft and Yahoo are using VoIP to power voice-based, instant-messaging programs.</b>'
fastfacts[14]='<b>First contact resolution reduces the need for second-contact calls.  A 50-agent center  handling 70,000 calls per month, can save nearly $150,000 per year by implementing this single best practice.<br>(Gartner CRM Practice)</b>'
fastfacts[15]='<b>First contact resolution reduces the need for second-contact calls.  A 50-agent center  handling 70,000 calls per month, can save nearly $150,000 per year by implementing this single best practice.<br>(Gartner CRM Practice)</b>'
fastfacts[16]='<b>The average cost of a call handled by an IVR system is 45 cents, compared to $5 for a call handled by an agent.<br>(Forrester Research)</b>'
fastfacts[17]='<b>Are your calls going where you want them to go?  Conduct an "IVR checkup".  Gather statistics for at least one week to examine average call flow path and termination points.</b>'  
fastfacts[18]='<b>Voice will remain the dominant contact center communications channel through 2006.<br>(GIGA Research)</b>'
fastfacts[19]='<b>Once voice is optimized, the next channel that demands attention in most centers is e-mail, followed by Web chat.</b>'
fastfacts[20]='<b>Because contact centers are typically under-invested, most enterprises should invest more in voice support before they serve other channels effectively and profitably.</b>'
fastfacts[21]='<b>Reducing technology costs are making contact management tools available to smaller centers, reducing the competitive advantage that large centers have enjoyed.</b>'
fastfacts[22]='<b>Internet contacts, which are not conveniently managed by ACD-based software, are driving the convergence of ACD (automatic call distributors) and CTI (computer telephony integration).</b>'

var ff=Math.floor(Math.random()*(fastfacts.length))
if (ff==0)
ff=1
document.write(fastfacts[ff])
}
fast_facts()
