

function btyc(){
        var h = document.bty.hight.value;
        var w = document.bty.weight.value;
        var x = w*10000/h/h;
        document.bty.bmi.value= Math.round(x*10)/10;
        document.bty.ans1.checked=false
        document.bty.ans2.checked=false
        document.bty.ans3.checked=false
        document.bty.ans4.checked=false
        document.bty.ans5.checked=false
                 if (x < 19) {document.bty.ans1.checked=true}
        else    if (x < 21) {document.bty.ans2.checked=true}
        else    if (x < 25) {document.bty.ans3.checked=true}
        else    if (x < 27) {document.bty.ans4.checked=true}
        else    document.bty.ans5.checked=true

/*理想プロポーション*/
        var a = h*0.52;
        var b = h*0.38;
        var c = h*0.53;
        var d = h*0.29;
        var e = h*0.20;
        var f = e*0.59;
        document.bty.pro1.value= Math.round(a*10)/10;
        document.bty.pro2.value= Math.round(b*10)/10;
        document.bty.pro3.value= Math.round(c*10)/10;
        document.bty.pro4.value= Math.round(d*10)/10;
        document.bty.pro5.value= Math.round(e*10)/10;
        document.bty.pro6.value= Math.round(f*10)/10;

/*理想体重*/
        var g = h/100;
        var i = g*g*20;
        var j = i*35;
        document.bty.pro7.value= Math.round(i*10)/10;
        document.bty.pro8.value= Math.round(j*10)/10;
        document.bty.pro9.value= Math.round(i*10)/10;
        document.bty.pro10.value= Math.round(h*10)/10;

/*理想体型*/
	var k = h*h*22.2/10000;
	var l = h*h*20/10000;
	var m = h*h*18.7/10000;
	var n = h*h*17.9/10000;
	var o = k*35;
	var p = l*35;
	var q = m*35;
	var r = n*35;
	document.bty.idew1.value=Math.round(k*10)/10;
	document.bty.idew2.value=Math.round(l*10)/10;
	document.bty.idew3.value=Math.round(m*10)/10;
	document.bty.idew4.value=Math.round(n*10)/10;
	document.bty.idec1.value=Math.round(o);
	document.bty.idec2.value=Math.round(p);
	document.bty.idec3.value=Math.round(q);
	document.bty.idec4.value=Math.round(r);
}

/*Help New Window Open*/
function openWi11(fi,na,w,h) {
	window.open(fi,na,"width="+w+",height="+h+",left=500,top=200,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,favorites=no,resizable=no");
}

// -->
