Pilates

Options
Hello does anyone know how to add pilates to my fitness chart so I can use them as calories burnt????

Replies

  • chosen
    chosen Posts: 31
    Options
    Hello does anyone know how to add pilates to my fitness chart so I can use them as calories burnt????
  • aprilann
    aprilann Posts: 238
    Options
    Go to health calculator. com they have a link on there of exercises that you can check how many calories burnt.
  • CandaceW
    CandaceW Posts: 73
    Options
    here is a code for a pilates calorie burned calculator...hopefully the code works correctly :)

    <table><tr><td colspan="3">Calories Burned Calculator</td></tr><tr><td colspan="3">Estimate the calories you burned doing Pilates:</td></tr><tr><td>Type:</td><td colspan=2><select id="selPaceWFM" name="selPaceWFM"><option value="3.5">Pilates-Mat</option><option value="3.25">Pilates-Reformer</option></select></td></tr><tr><td style="width:110px;">Weight:</td><td style="width:50px;"><input type="text" id="txtWeightWFM" name="txtWeightWFM" value="0" style="width:40px;" maxlength=6></td><td style="width:190px;"><select id="selWeightWFM" name="selWeightWFM" style="width:95px;"><option value="2">Pounds</option><option value="1">Kilograms</option></select></td></tr><tr><td style="width:110px;">Time:</td><td style="width:50px;"><input type="text" id="txtTimeWFM" name="txtTimeWFM" value="0" style="width:40px;" maxlength=6></td><td style="width:190px;"><select id="selTimeWFM" name="selTimeWFM" style="width:95px;"><option value="1">Hours</option><option value="2">Minutes</option></select></td></tr><tr><td colspan="3"><INPUT type="button" value="Calculate" id="btnCalculateWFM" name="btnCalculateWFM" onclick="CalculateWFM();"></td></tr><tr><td colspan="3"><div id="divResultWFM" id="divResultWFM"></div></td></tr></table>
    <script type="text/javascript">
    <!--
    function CalculateWFM(){if(document.getElementById('txtWeightWFM').value==''||isNaN(document.getElementById('txtWeightWFM').value)){alert('Please enter a valid weight');document.getElementById('txtWeightWFM').focus();return false;}if(document.getElementById('txtTimeWFM').value==''||isNaN(document.getElementById('txtTimeWFM').value)){alert('Please enter a valid time');document.getElementById('txtTimeWFM').focus();return false;}var hr;var kg;var cb;if(document.getElementById('selTimeWFM').value!=1){hr=document.getElementById('txtTimeWFM').value/60;}else{hr=document.getElementById('txtTimeWFM').value;}if(document.getElementById('selWeightWFM').value!=1){kg=document.getElementById('txtWeightWFM').value*.45359237;}else{kg=document.getElementById('txtWeightWFM').value;}if(kg>182||kg<22){alert('Please enter a valid weight');document.getElementById('txtWeightWFM').focus();return false;}if(hr>12||hr<=0){alert('Please enter a valid time');document.getElementById('txtTimeWFM').focus();return false;}cb=Math.round((kg*document.getElementById('selPaceWFM').value)*hr);document.getElementById('divResultWFM').innerHTML='You burned '+cb+' calories!';}
    //-->
    </script>Pilates can help with <a href="http://www.everydayhealth.com/heart-disease/index.aspx">cardiac disease prevention</a>.



    well....guess it didn't work :cry: :laugh: here is the link to the page that this code is from
    http://www.everydayhealth.com/Calories-Burned-Pilates.htm