//store the quotations in arrays
quotes = new Array(23);
authors = new Array(23);
quotes[0] = "On a couple of the projects extra effort was required to complete the assignment.  Mr. Wagner, or the employee from Avogadro Environmental Corporation who was assigned to the project, put forth the extra effort, giving 110% to complete the job.";
authors[0] = "Anchor Tech, Inc. - President";
quotes[1] = "Your technical guidance and ability to work with several different parties was greatly appreciated.";
authors[1] = "API Foils, Inc. - Engineering Manager";
quotes[2] = "I was very impressed by the persistence and abilities of each member of your firm and look forward to working with you again in the future.";
authors[2] = "Burlington County Resource Conservation - Senior Solid Waste Planner";
quotes[3] = "I would recommend their services to other companies in need of environmental compliance assistance.";
authors[3] = "Butter Krust Baking Company, Inc. - Environmental & Safety Compliance Coordinator";
quotes[4] = "They always go above and beyond what is asked and consistently out-perform expectations.  We have enjoyed a long-term relationship with Avogadro and hope to continue that relationship well into the future.";
authors[4] = "Capital Health System - Manager, Plant Operations";
quotes[5] = "I would recommend Avogadro to anyone. If you want a company with knowledgeable staff and awesome customer service, Avogadro is the company for you!";
authors[5] = "Casie/Protank - D.W.";
quotes[6] = "I was impressed with your project team’s regulatory knowledge and the strong working relationship with the regulators.  The projects have been on time and on budget, which makes my job much easier.";
authors[6] = "Commonwealth Environmental Systems - B.R.";
quotes[7] = "I found your staff to be very professional, exhibiting strong communication skills.  Those skills alone put my mind at ease and helped me to develop confidence that the project will be completed in a timely and efficient manner.";
authors[7] = "CNH America, LLC - Environmental Engineer";
quotes[8] = "We want to thank you for providing a technically brilliant management team which, at the end of the day, offers a great value to CSM and our customers.";
authors[8] = "CSM, Worldwide Inc - Project Engineer";
quotes[9] = "It has been nice to work with on who can offer long tern solutions and strategies in addressing our regulatory issues.";
authors[9] = "E&H Laminating - K.H.";
quotes[10] = "In discussion with Tom Mattei he recommended revising the test protocol and in doing so he successfully negotiated a technically sound approach that satisfied the NJDEP’s requirements.  Since then our reporting requirements have been met.";
authors[10] = "East Windsor MUA WWTP - Wastewater Superintendent";
quotes[11] = "Avogadro has excelled in all areas and helped make Essroc a good environmental steward to our community.";
authors[11] = "Essroc Italcementi Group - Environmental Manager";
quotes[12] = "Tom and the Avogadro team have consistently gone out of their way to help me gain an understanding of the testing, audit and certification requirements as they pertain to our industry.  I would recommend Avogadro to any company looking for exceptional service.";
authors[12] = "Essroc Italcementi Group - Environmental – Packaging, Bulkloading";
quotes[13] = "We have always found your approach to be consistent and ethical.  Your staff, from accounting through project management, is professional, courteous and technically competent.";
authors[13] = "Ferro Corporation - Environmental Compliance Specialist";
quotes[14] = "Avogadro’s extensive experience and knowledge coupled with their personal attention to our situation have persuaded us to use Avogadro for all our testing needs.";
authors[14] = "Homasote Company - Environmental Manager";
quotes[15] = "All of these projects, from the proposal stage through the publication and approval of the final test report were handled in a professional and cost effective manner.  Horiba strongly recommends Avogadro Environmental as a supplier of technically competent and timely certification testing and consulting services.";
authors[15] = "Horiba Instruments, Inc. - Project Manager";
quotes[16] = "However, every new project which we have worked on with Avogadro has shown me the same dedication and responsiveness as the last project. I would have no hesitation in recommending Avogadro Environmental for any project, big or small. The staff at Hull would also recommend George for his Venison Sausage.";
authors[16] = "Hull Corporation -L.W.";
quotes[17] = "Avogadro’s professionalism and attention to detail were commendable both during the test itself and in the preparation of the reports that followed.";
authors[17] = "Osman Environmental Solutions, LLC - President";
quotes[18] = "In short, they were very responsive to our needs and we are looking forwarding to working with Avogadro in future projects.";
authors[18] = "Revere Smelting & Refining Corporation - EH&S Compliance Manager";
quotes[19] = "Avogadro has consistently completed the work accurately and on-time across the board.  The team at Avogadro always demonstrates hard-work and dedication to getting the job done and keeping us happy.";
authors[19] = "Safety Kleen - Environmental Compliance Manager - Linden Recycling Center";
quotes[20] = "Whenever we have had the opportunity to refer them to our clients their level of service and professionalism has been unmatched.  On the projects we have worked on together on they have provided us with additional support via phone and field visits to help clarify any issues we may run into. Once again, the level of service is first rate.";
authors[20] = "Servpro of Easton, Bethlehem & Whitehall - Vice President";
quotes[21] = "In addition to the technical competency of the group, Avogadro personnel also demonstrated a willingness to put in extra effort which was necessary to deal with difficult production constraints.";
authors[21] = "Stonehenge Associates - Principal";
quotes[22] = "They have always provided excellent service and have been extremely flexible in meeting our ever-changing needs. This excellent service is coupled with very competitive pricing. Their staff has always worked diligently to successfully solve any problems that are encountered.  They are also quite knowledgeable of environmental regulations and are very thorough in assuring that services are performed in accordance with appropriate requirements. When it comes to compliance testing needs, I highly recommend Avogadro.";
authors[22] = "Vineland Municipal Electric Utility - Principal Engineer - GENERATION DIVISION";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");

//done