<!--LC-CALCS.JS-->
<!-- Begin
function solvelc(form) {
frequency = (form.frequency.value);
freq = frequency / 1000;
lumped = 25330.3
calc = lumped /(freq*freq);
form.LC.value = parseInt(calc);

}

function cleanUp(form) {
form.frequency.value = "";
freq = "";
calc = "";
form.LC.value = "";

}

function solvecomp(form) {
component = (form.component.value);
form.MC.value = parseInt(calc/component);

}

function cleanUpLC(form) {
form.component.value = "";
form.MC.value = "";

}

//  End -->
