function getQuote()
{
	quote = new Array(15);
	// Add User Testimonials on 1 line
	quote[0] = "<div class=\"text\">\"EA has one of the most comprehensive and exhaustive feature sets of any UML lifecycle tool.\"</div><div class=\"author\">Greg Hoover<br />Technical Lead<br />HTE-UCS, Inc.</div>";

	quote[1] = "<div class=\"text\">\"You've got a very capable product at 1/15th the cost!\"</div><div class=\"author\">Cameron O'Rourke.<br />Software Architect</div>";

	quote[2] = "<div class=\"text\">\"Thank you; you have a great product.\"</div><div class=\"author\">Johnny Olsa<br />Systems Analyst<br />Investment Scorecard, Inc.</div>";

	quote[3] = "<div class=\"text\">\"EA is quite reliable and, best of all, handy.\"</div><div class=\"author\">Bruce Brownlee<br />Vice President<br />Blackstone & Cullen</div>";

	quote[4] = "<div class=\"text\">\"An excellent product at a reasonable price with impressive, after-sales, personal technical support.\"</div><div class=\"author\">Tom Burton, MSc.<br />Design of Information Systems, UK</div>";

	quote[5] = "<div class=\"text\">\"Can I say how impressed I am with Enterprise Architect, particularly with the scope of functionality and its support for modeling the entire development lifecycle,\"</div><div class=\"author\">Jonathan Beebe<br />jonathanbeebe.com</div>";

	quote[6] = "<div class=\"text\">\"To be honest, EA is a fantastic product… The price you charge is way below what it is worth!\"</div><div class=\"author\">Matt Ellis<br />Solutions Reality</div>";

	quote[7] = "<div class=\"text\">\"Your product is the best – hands down. The feature set is so rich it takes a team to exercise it all!\"</div><div class=\"author\">Charlie Adkins<br />Adkins and Associates<br />Strategic Information Systems</div>";

	quote[8] = "<div class=\"text\">\"You just don't find this kind of accessibility from many of the well-known vendors.\"</div><div class=\"author\">J. Dossett<br />Senior Engineer<br />SEP, Inc.</div>";

	quote[9] = "<div class=\"text\">\"Nothing can compare to the power, ease-of-use, and rock-bottom price of Enterprise Architect… I have never felt more invincible as an architect and designer!\"</div><div class=\"author\">Craig A. De Ruisseau<br />Web Development Manager<br />Analog Devices, Inc.</div>";

	quote[10] = "<div class=\"text\">\"It's... great! My decision to purchase EA was confirmed within 20 minutes.\"</div><div class=\"author\">Steve Midwinter<br />Chief Architect<br />KOM*1 Open Community Systems B.V.</div>";

	quote[11] = "<div class=\"text\">\"EA is, without a doubt, the developer tool bargain of the century.\"</div><div class=\"author\">Peter M Jones<br />Systems Engineering Pty Ltd</div>";

	quote[12] = "<div class=\"text\">\"It is a developer's dream come true!\"</div><div class=\"author\">Sunil Koul<br />Software Designer<br />Sasken Communication Technologies Limited, Bangalore</div>";
	
	quote[13] = "<div class=\"text\">\"EA ... creates a website of the model with a single click... or creates a word processing document... or generates stub code... or... well, you get the picture.\"</div><div class=\"author\">Davide Marney<br />Software Architect<br />Datatel, Inc. (www.datatel.com)</div>";

	quote[14] = "<div class=\"text\">\"I'd like to congratulate you and your staff on delivering what I consider to be probably one of the most valuable software products in support of systems engineering in existence, Enterprise Architect.\"</div><div class=\"author\">Joe Williams<br />Sr. Software Architect<br />Synapsense Corporation</div>";


	//qs = window.location.search.substring(1);

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

	//display the quotation
	var testimonial;
	testimonial = quote[index];
	//testimonial = quote[qs];
	
	return (testimonial);
	
}