var m_arrCensusQuotes=new Array();
var QUOTE_CAPTION_ID=0;
var QUOTE_PERSON_ID=1;
var QUOTE_COMPANY_ID=2;

m_arrCensusQuotes[0]=new Array("We're very pleased with the level of customization supported. Census enforces our rigorous software development process at each stage of the issue lifecycle. Now we always know who's responsible for issues, our software defects get fixed quicker, and suggested enhancements get considered earlier.", "Richard Siemens", "The PEER Group Inc.");
m_arrCensusQuotes[1]=new Array("At Citigroup, we heavily utilize the broad flexibility and customizations that Census provides to track chronic issues and manage our global technology. Census has allowed us to create an easily controlled and accessible platform that has served us well.", "Todd P. Fischer", "Citigroup");
m_arrCensusQuotes[2]=new Array("I can’t say enough about the outstanding support I’ve received from MetaQuest. They really have a sense of urgency when it comes to resolving customer issues. Very professional and customer-centric. I highly recommend their services and solutions.", "Wayne Gilson", "Casabyte, Inc.");
m_arrCensusQuotes[3]=new Array("Customer support is a big reason we continue to use Census. The turnaround time is exceptional and the answers are always complete.<br>Other products do similar things, but MetaQuest stands out as a champion.", "Tom Tschappler", "Fluke Networks");
m_arrCensusQuotes[4]=new Array("If all customer support was given with such consideration and knowledgeability, there would certainly be a lot more &quot;happy campers&quot; in the tech world.", "Ann Toth", "HIIP Helpdesk Support");
m_arrCensusQuotes[5]=new Array("Because Census provides such a high degree of customizability and such a friendly user interface, our users have been able to adopt Census with minimal training and without having to change their business processes.", "Joel Weber", "Weber & Associates, Inc.");
m_arrCensusQuotes[6]=new Array("The Timesheets package has saved us several hundred hours this year alone in terms of time spent by managers organizing and analyzing timesheet data.", "Joel Weber", "Weber & Associates, Inc.");
m_arrCensusQuotes[7]=new Array("I can’t say enough about the outstanding support I’ve received from MetaQuest. They really have a sense of urgency when it comes to resolving customer issues. Very professional and customer-centric. I highly recommend their services and solutions.", "Wayne Gilson", "Casabyte, Inc.");
m_arrCensusQuotes[8]=new Array("Customer support is a big reason we continue to use Census. The turnaround time is exceptional and the answers are always complete.<br>Other products do similar things, but MetaQuest stands out as a champion.", "Tom Tschappler", "Fluke Networks");
m_arrCensusQuotes[9]=new Array("If all customer support was given with such consideration and knowledgeability, there would certainly be a lot more &quot;happy campers&quot; in the tech world.", "Ann Toth", "HIIP Helpdesk Support");
m_arrCensusQuotes[10]=new Array("MetaQuest support does a very good job.<br>I received quick and qualified answers to all my questions.", "Lars Olesen", "Terma");
m_arrCensusQuotes[11]=new Array("We're very pleased with the level of customization supported. Census enforces our rigorous software development process at each stage of the issue lifecycle. Now we always know who's responsible for issues, our software defects get fixed quicker, and suggested enhancements get considered earlier.", "Richard Siemens", "The PEER Group Inc.");
m_arrCensusQuotes[12]=new Array("The time and cost savings as well as the increased operational efficiencies that we've achieved since adopting  MetaQuest's Census have made it well worth the investment.", "Joel Weber", "Weber & Associates, Inc.");
m_arrCensusQuotes[13]=new Array("I can’t say enough about the outstanding support I’ve received from MetaQuest. They really have a sense of urgency when it comes to resolving customer issues. Very professional and customer-centric. I highly recommend their services and solutions.", "Wayne Gilson", "Casabyte, Inc.");
m_arrCensusQuotes[14]=new Array("Since we moved to Census from a paper-based issue tracking system, Census has reduced the average time to resolution of issues by 24-48 hours.", "Joel Weber", "Weber & Associates, Inc.");

var MAX_CENSUS_QUOTES=15;

function WriteCensusQuote(objQuoteDiv, lngQuoteIndex)
{
	
	if(objQuoteDiv){
		if(lngQuoteIndex>MAX_CENSUS_QUOTES-1){
			lngQuoteIndex=0;
		}

		var strHTML="<table><tr><td class='quotes' style='text-align:right; margin-left:24pt; margin-right:12pt; margin-top:2pt; margin-bottom:0pt; padding-right: 10px; color:#333333;' width='550'>"
		 + "&quot;" + m_arrCensusQuotes[lngQuoteIndex][QUOTE_CAPTION_ID] + "&quot;"
		 + "</td><td class='quotes' style='text-align:left; margin-right:12pt; margin-bottom:0pt; margin-top:8pt; vertical-align:middle;' width='125'>"
		 + "<i>" +  m_arrCensusQuotes[lngQuoteIndex][QUOTE_PERSON_ID] + "</i><br>" + m_arrCensusQuotes[lngQuoteIndex][QUOTE_COMPANY_ID] + "</td></tr></table>"; 
		
		objQuoteDiv.innerHTML=strHTML;
	}
}