// scriptfunction calc(form){	var int1 = form.pupil.value;	var int2 = form.flange.value;	var int3 = int2 - int1;	form.flange00.value = int2 ;	form.flange01.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 1 / 6 ) ) ) + int3);	form.flange02.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 2 / 6 ) ) ) + int3);	form.flange03.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 3 / 6 ) ) ) + int3);	form.flange04.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 4 / 6 ) ) ) + int3);	form.flange05.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 5 / 6 ) ) ) + int3);	form.flange06.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 6 / 6 ) ) ) + int3);	form.flange07.value = form.flange06.value;	form.flange08.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 7 / 6 ) ) ) + int3);	form.flange09.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 8 / 6 ) ) ) + int3);	form.flange10.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 9 / 6 ) ) ) + int3);	form.flange11.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 10 / 6 ) ) ) + int3);	form.flange12.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 11 / 6 ) ) ) + int3);	form.flange13.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 12 / 6 ) ) ) + int3);	form.flange14.value = form.flange13.value;	form.flange15.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 13 / 6 ) ) ) + int3);	form.flange16.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 14 / 6 ) ) ) + int3);	form.flange17.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 15 / 6 ) ) ) + int3);	form.flange18.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 16 / 6 ) ) ) + int3);	form.flange19.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 17 / 6 ) ) ) + int3);	form.flange20.value = Math.round( int1 * Math.sqrt ( Math.pow ( 2 , ( 18 / 6 ) ) ) + int3);}
