<!--

function solveChurn(form) {

var box1 = eval(form.box1.value);
var box2 = eval(form.box2.value);
var box3 = eval(form.box3.value);

var result = ((box3 / (box1 / box2)) / box2) * 12;

if (result < 2.00) {
message = "You had a Churning Number of " + result + ".  While in some instances, courts have found accounts with turnover ratios of less than 2 to have been churned, your account falls below the generally accepted turnover ratio of 2 and it is unlikely your account has been churned.";

}
else {

if (result > 1.99)
message = "You had a Churning Number of " + result + ".  For accounts with conservative investment goals, a turnover ratio of 2 is suspect and infers that a customer\'\s account may have been churned.";

if (result > 3.99)
message = "You had a Churning Number of " + result + ".  For accounts with conservative investment goals, a turnover ratio of 4 or above is presumed to be churned.";

if (result > 6.00)
message = "You had a Churning Number of " + result + ".  For accounts with conservative investment goals, a turnover of 6 or more constitutes conclusive proof of churning.";

}
form.message.value = message;
form.churnamount.value = result;
}
//  End -->

