<!--
var x
var Head = new Array()
var Detail = new Array()
Head[0] = "Easy to use"
Detail[0] = "Designed to require less computer knowledge and training."
Head[1] = "Greater Manageability"
Detail[1] = "Unlimited system reports, full trust accounting, and instant access to your information give you more control over your cases."
Head[2] = "Saves Space"
Detail[2] = "Documents are stored on-line eliminating the expense of maintaining paper copies."
Head[3] = "Cost Effective"
Detail[3] = "Take advantage of increased efficiency.  This system will help you save time and money."
Head[4] = "Higher Productivity"
Detail[4] = "Handle a greater caseload with your present staff."
Head[5] = "Latest Technology"
Detail[5] = "The relational database provides powerful queries and reports to easily access your information."
Head[6] = "Support"
Detail[6] = "Get the answers you need when you need them with 24-hour toll-free support."
for (x in Head)
	{
	document.write('<div class="floater5">');
	document.write(Head[x]);
	document.write('</div>');
	document.write('<div class="centercolumncontent5">');
	document.write(Detail[x]);
	document.write('</div>');
	}
//-->