var counter = 0;
var totalCount = 4;
var msg = new Array

msg[0] = "Business Logic, Inc., without doubt, possesses exceptional, one-of-a-kind, work ethic, business acumen, " +
	"focus and developmental expertise.  I find his repertoire of knowledge to be vast, solid " +
	"and complete.   He exceeded every expectation in our company's intranet project... accepting "+
	"all challenges, working tirelessly under a tight deadline & demanding requirements with a "+
	"steadfast positive attitude of getting the job done, no problem.   (Amazingly, his positive " +
	"demeanor never wavered during the difficult times!).  \n" +
	"The finished product was not only visually pleasing, it was precise, organized, and " +
	"professional - just as we had asked, simply, top of the line!  Qin went above and beyond " +
	"the call of duty in our implementation.  Our network of Associates are virtually speechless, " +
	"in awe, with the system's full range of functionality and ease of use. \n" +
	"Most importantly, I would like to speak of Qin's character.  Never in my professional " +
	"history have I met someone possessing the skill he has combined with such a genuine \"happy " +
	"to serve\" mentality.  I had an immediate trust with Qin from the first time we spoke as " +
	"I sensed his commitment to doing his best for our needs.  His integrity is unmeasured; he " +
	"is a true class act and a model of greatness to the consulting profession.  With Qin, the " +
	"sky's the limit and anyone would be lucky to work with him. - Carol Glowczewski, Corporate Finance Associates";
msg[1] = "&quot;Mr. Business Logic, Inc., provides a personalized service in several ways. First, he asked questions effectively to " +
	"determine my company's goals. Then he used that information first to determine " +
	"an overall picture of the company's use of resources and actual costs. Then, " +
	"through face-to-face communication he is helping me design a business plan for " +
	"my small business. His communication style is to determine my intentions and " +
	"goals and to supplement what I know with his expertise. I like his attention to " +
	"detail and his timeliness in getting back to me with answers and rationale for " +
	"business decisions. The outcome of our relationship is that it is forming a " +
	"bedrock for a relationship built on trust and common intention. Lastly, his " +
	"personalized service includes his creative ideas-- which have already expanded " +
	"my horizons in seeing innovative and successful directions for me to take my business.&quot; -" +
	"Antonia Johnson, Talk Mastery";
msg[2] = "&quot;Business Logic Inc. delivered 101% of the work expected of them. The quality of the work and responsiveness to my " +
         "business needs have been exceptional and surpassed my expectations. " +
         "I would not hesitate to use their services again.&quot; - Lilia Guanzon, Lilia Inc.";
msg[3] = "&quot;Business Logic Inc. is an excellent company, they were able to complement my strengths by providing " +
	"logical reasons and analysis for their recommendations. Their research was " +
	"indepth. As a result, I am proceeding with my business concept and objectives. My " +
	"objectives are more focused and defined. They are based on numerical facts and " +
	"market based business models. I would highly recommend Business Logic Inc.&quot; - " +
	"Thanks, Jay, usaluxurycars.com";
msg[4] = "&quot;I have nothing but good things to say about Qin. I posted a bid for this project because " +
	"I did not have time to learn the ropes about developing a compensation plan for my sales " +
	"team. After discussing my needs, Qin provided a comprehensive outline on what data would " +
	"need to be analyzed and developed in order to meet my end goal. He went -way- beyond what " +
	"I expected in terms of work delivered and is very knowledgeable of the work. " +
	"I have definitely found a company to continue working with as our needs grow. " +
	"We definitely will go to Qin for all of our consulting needs.&quot; - Steve Mcdonald, SMC Technology.";

showMsg();

function goNext() {
	if (counter >= totalCount) {
		return false;
	}
	counter = counter + 1;
	showMsg();
}

function goPre() {
	if (counter == 0) {
		return false;
	}
	counter = counter -1;
	showMsg();
}

function showMsg() {
	if (counter == totalCount) {
		document.frmMsg.next.disabled = true;
	} else {
		document.frmMsg.next.disabled = false;
	}
	
	if (counter == 0) {
		document.frmMsg.pre.disabled = true;
	} else {
		document.frmMsg.pre.disabled = false;
	}
	document.frmMsg.msg.innerHTML = msg[counter];
}

