<!--

function CalcAdvance(m,g) {

Mly = m;
Grs = g;
Mul = "0";
Max = "0";

if (Mly == "") { alert("Please enter Monthly Credit Card Sales Volume"); return false; }
if (Grs == "") { alert("Please enter Gross Monthly Sales Volume"); return false; }


if ( g/m >= 4 ) { Mul = "4" } else { Mul = (g/m)}

Max = Mly * 1.5;
document.calc.max.value = Max;

}



//-->