function getQuote()
{
	quote = new Array(5);
	// Add User Testimonials on 1 line
	quote[0] = "\"I would have to say that EA has one of the most comprehensive and exhaustive feature sets of any UML lifecycle tool at any price. The performance is fast and everything is conveniently located in a single interface. Thanks for a great product at a price that is accessible to everyone!\" <br><b>Greg Hoover<br>Technical Lead<br>HTE-UCS, Inc.";
	quote[1] = "\"I tried using Rational Rose the other day for the first time after using EA -- and it was amazingly weak by comparison. You've got a very capable product at 1/15th the cost!\"<br><b>Cameron O'Rourke.";
	quote[2] = "\"Thank you, You have a great product.\"<br><b>Johnny Olsa<br>Systems Analyst<br>Investment Scorecard, Inc.";
	quote[3] = "\"Enterprise Architect has been a surprisingly effective and easy to use UML tool. EA has made easy work of a variety of business process modeling and software development projects accomplished for our customers. For a relatively new tool, EA is quite reliable and, best of all, handy. Our customers have been very impressed with the quality of documentation produced by EA. Sparx seems to be fully committed to EA, as each release brings out a host of new features that bring EA closer to being a full round-trip UML tool, at a fraction of the cost of competing products. Licensing terms are easy and installation is quite a bit simpler than for the competition.\"<br><b>Bruce Brownlee<br>Vice President<br>Blackstone & Cullen";
	quote[4] = "\"I love this tool. I've been more productive within the first 30 minutes of installing than I ever have with Visio.\"<br><b>Phil Boyd, MCP<br>CPT, AR, USAR<br>Sr. Sys. Consultant<br>IT/FFA";
	quote[5] = "\"I found EA incredibly powerful and above all, flexible.  The documentation that it produces is excellent ... It significantly reduced the amount of duplicated work that I had to do. ... I would now find it hard to justify the expense of Rational or Popkin's products. An excellent product at a reasonable price with impressive, after-sales, personal technical support.\"<br><b>Tom Burton, MSc.<br>Design of Information Systems, UK<br>Sr. Sys. Consultant<br>IT/FFA";
	quote[6] = "\"To be honest, EA is a fantastic product… the price you charge is way below what it is worth!\"<br><b>Matt Ellis<br>Solutions Reality";
	quote[7] = "\"I have used many UML tools, from Rose, Together Control Center, Embarcadero and Quest, to Poseidon and other open source tools and your product is the best - hands down. The feature set is so rich it takes a team to exercise it all!\"<br><b>Charlie Adkins<br>Adkins and Associates<br>Strategic Information Systems";
	quote[8] = "\"Sparx Systems seems like much more of a 'developer company's company'. By that, I mean that the forums appear to be full of examples of EA designers and developers immediately addressing customer problems and needs. You just don't find this kind of accessibility from many of the well-known vendors.\"<br><b>J. Dossett<br>Senior Engineer<br>SEP, Inc.";
	quote[9] = "\"I wanted to tell you that I have been using Enterprise Architect for several months now and am continually blown away by it. I have used nearly every UML tool on the market at one time or another -- from Rose, XDE, and Together to MagicDraw, Eclipse, Poseidon, and ArgoUML -- and find that nothing can compare to the power, ease-of-use, and rock-bottom price of Enterprise Architect. I have been further enlightened with the recent addition of the Zicom Mentor to the tool. I have never felt more invincible as an architect and designer!\"<br><b>Craig A. De Ruisseau<br>Web Development Manager<br>Analog Devices, Inc.";
	

	
	//calculate a random index
	index = Math.floor(Math.random() * quote.length);

	//display the quotation
	var testimonial;
	testimonial = quote[index];
	
	return (testimonial);
	
}