// JavaScript Document

<!--
function get_random()
{
    var ranNum= Math.round(Math.random()*2);
    return ranNum;
}

function getaQuote()
{
   	var whichQuote=get_random();

	//Reminder: Quote has to be on one line in order for it to work.
    var quote=new Array(3)
    quote[0]="<i>\"Chris and his staff are a key partner in my business ventures which include small business acquisitions, sales, and management. Since these deals normally occur very quickly, and data/information generation and analysis are critical in their success, I rely on Chris and his firm to produce outstanding reports in often a very short time frame.  I would not use any other firm as there are many CPAs in the world but not many dependable business partners.\"</i><br><br>Jeff<br>Entrepreneur";
    quote[1]="<i>\"We both are impressed by your dedication to your work, and we are happy and grateful that you bailed us out of the 2002 fiasco.\"</i><br><br>Stanley and Erika<br>IRS Challenged Retirees";
    quote[2]="<i>\"We have been very pleased with the services you offer. As a small business owner, there are many new issues that come up regarding tax issues or even bookkeeping issues as our business grows and changes that need to be handled. We always feel that you have the knowledge and just as important, the time to chat a minute and get our questions answered. We don't feel that any \"stupid question\" is dismissed. We appreciate that in your service.\"</i><br><br>Mike<br>Small Business Owner";
  
	document.write(quote[whichQuote]);
}
//-->
