//Random Quote

var Quotation = new Array()

Quotation[0] = "I have had the opportunity over the past week to spend time with some of our managers, FSCs and QA people.  All had only positive things to say about the Empathica program.  Their feedback was that it was far superior to Good Answer; there was <nobr><I>no comparison.</I>";
Quotation[1] = "For the first time in our organization's history, management has the ability to see and statistically measure guest feedback at each and every location. The reports are having a profound effect on our guest service <nobr>practices.";
Quotation[2] = "From program development to data collection and analysis, your team has been highly responsive to our unique needs and has provided valuable <nobr>guidance.";
Quotation[3] = "It's great because it's <i>immediate</i> and right from the <nobr>customer.";
Quotation[4] = "The most valuable way to get consumer feedback on our operations is from real, live <nobr>customers.";
Quotation[5] = "Empathica's survey process has unveiled many new opportunities for our company to take corrective <nobr>action...";
Quotation[6] = "We have found the Empathica team to be knowledgeable and responsive to our needs. They spent sufficient time to understand our business and tailored it to our unique <nobr>needs.";
Quotation[7] = "I love the real time responses, and the ability to revise and adapt the questionnaire to real business <nobr>needs.";
Quotation[8] = "We're excited about Empathica bringing forward thinking, cutting edge ingenuity in the realization of our customers' perceptions. The team is quite innovative and responsive to our <nobr>needs.";
Quotation[9] = "Empathica has exceeded our expectations in terms of responsiveness, meeting deadlines, quality of work and data captured. I would recommend their services without reservation as they provide an excellent product at a very competitive <nobr>price.";
Quotation[10] = "With Empathica we pinpoint where our opportunities lie. That's fantastic for <nobr>us.";
Quotation[11] = "Empathica delivered a cost-effective, flexible solution in support of our survey requirements. They combined creative, accurate and user friendly reporting with exceptional service and timely <nobr>execution.";
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}


var ClientRep = new Array()

ClientRep[0] = "VP of Training<br />Popular restaurant chain";
ClientRep[1] = "Mgr, Special Projects Operations<br />Leading drugstore chain";
ClientRep[2] = "Sr. Director, Strategy<br /> Large specialty retailer";
ClientRep[3] = "Restaurant General Manager<br />Leading fast-food chain";
ClientRep[4] = "Former Multi-Branding Chief<br />Popular restaurant chain";
ClientRep[5] = "Senior Manager of Operations<br />Popular family dining chain";
ClientRep[6] = "Exec. Dir. Operations Services<br />Leading movie theatre chain";
ClientRep[7] = "Franchisee<br />Leading casual dining chain";
ClientRep[8] = "Regional Manager<br />#1 coffee company in Canada";
ClientRep[9] = "VP and GM<br />Top general retailer";
ClientRep[10] = "Area manager<br />Large foodservice company";
ClientRep[11] = "AVP, Human Resources<br />Top financial services company";

function showClientRep(){document.write(ClientRep[whichQuotation]);}
