<!-- You need a Java Enabled Browser to use the Crossover Calculator.
// COPYRIGHT © S.Westenskow 1997-2000 e-mail: XSSpl@hotmail.com ***
function calcUlate() {
	var rH = document.forms[0].elements[0].value
	var rL = document.forms[0].elements[1].value
	var f  = document.forms[0].elements[2].value
	var a  = (0.159/(rH * f)) * 1000000
	var b  = (rL/(6.283 * f)) * 1000
valuea = Math.round((a)*100)/100
valueb = Math.round((b)*100)/100
document.forms[0].elements[3].value=valuea
document.forms[0].elements[4].value=valueb
}
// -->
