<!-- You need a Java Enabled Browser to use the Crossover Calculator.
// COPYRIGHT © S.Westenskow 1997-2000 e-mail: XSSpl@hotmail.com ***
function linkwitzRiley() {
	var lrH = document.forms[0].elements[0].value
	var lrL = document.forms[0].elements[1].value
	var  lf = document.forms[0].elements[2].value
	var lc1 = (.0796/(lrH * lf)) * 1000000
	var ll1 = ((.3183 * lrH)/ lf) * 1000
	var lc2 = (.0796/(lrL * lf)) * 1000000
	var ll2 = ((.3183 * lrL)/ lf) * 1000
valuelc1 = Math.round((lc1)*100)/100
	document.forms[0].elements[3].value=valuelc1
valuell1 = Math.round((ll1)*100)/100
	document.forms[0].elements[4].value=valuell1
valuelc2 = Math.round((lc2)*100)/100
	document.forms[0].elements[5].value=valuelc2
valuell2 = Math.round((ll2)*100)/100
	document.forms[0].elements[6].value=valuell2
}
// --> 
