// JavaScript Document
// DISPLAY ONE OF 'N' RANDOM QUOTES ON EACH LOAD (OR RELOAD) OF A PAGE
// Be sure to adjust the array size to the actual number of quotes
// Number must match the multiplier on the Math.random function also
quotes = new Array(5)
quotes[1] = "\"We consider Optix to be far and away the best document imaging and management system on the market because of its cross-platform nature, easy scalability, best-of-class web interface and ease of use at all levels.\"<br><br>- John DeMillion<br>Director of IT, CCIU";
quotes[2] = "\"The Optix technical support team is there when you need them. No matter how small or great the problem, Optix technical support has been exceptional.\"<br><br>- Robert Alum<br>SUSD";
quotes[3] = "\"Using Optix we decreased the turnaround time for processing an application from 4 weeks to 72 hours.\"<br><br>- Dave Alderson, Project Manager<br>OIT, UMD"; 
quotes[4] = "\"Optix has truly become a core operational system at the University of St. Thomas. We have found Optix to be extremely flexible and customizable to address any of our document management and workflow challenges.  Optix's ease of use, coupled with world class technical support, has made Optix one of our most relied-upon technologies.\"<br><br>- Tony Wilkinson, Manager<br>University of St. Thomas";
quotes[5] = "\"The powerful scripting and customization capabilities of Optix provided an easy path to integration with our existing PeopleSoft installation, resulting in remarkable efficiencies in Admissions processing.\"<br><br>- Boyana Barbula, System Support Coordinator for Enrollment Management<br>Sacramento State";
// Be sure to change the number following the "*" below to match the number of messages.
var wch=Math.floor(Math.random()*5+1)
document.write (quotes[wch])
// -- end hiding 
