<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="Calorie - Calculator" title_url="http://www.muskelaufbau-tipps.de/fitness-tools/calorie-calculator.html" description="With this calculator you can determine your individual daily calorie intake." author="muskelaufbau-tipps.de" author_email="gadget@muskelaufbau-tipps.de" author_location="Germany" author_link="http://www.muskelaufbau-tipps.de" screenshot="http://www.muskelaufbau-tipps.de/gadgets/kalorienbedarf-rechner.png" thumbnail="http://www.muskelaufbau-tipps.de/gadgets/all_thumb.png" height="350" scaling="false" />
<Content type="html"><![CDATA[
<SCRIPT LANGUAGE="JavaScript">
function rechne()
  {
  gew = document.Rechner.Gewicht.value;
  fett = document.Rechner.Fett.value;
  akt = document.Rechner.akt.value;
  fettfrei = gew / 100 * ( 100 - fett )
  bmr = 370 + ( 21.6 * fettfrei )
  kal = akt * bmr
  kala = kal / 100 * 85
  kalz = kal / 100 * 110
  kala = Math.round(kala)
  kalz = Math.round(kalz) 
  kal = Math.round(kal)
  document.Rechner.Kal.value = kal;
  document.Rechner.KalA.value = kala;
  document.Rechner.KalZ.value = kalz;
  return false; // wichtig, damit das Ergebnis stehen bleibt!
  }
</SCRIPT>
<form name="Rechner" onSubmit="return rechne(); return true">
    <table width="400" height="172" border="0">
        <tbody>
            <tr>
                <td><font size=-1>Weight:</td>
                <td><font size=-1><input type="text" size="15" name="Gewicht" id="Gewicht" />kg</td>
            </tr>
            <tr>
                <td><font size=-1>Bodyfat-Percentage:</td>
                <td><font size=-1><input type="text" size="15" name="Fett" id="Fett" />%</td>
            </tr>
            <tr>
                <td><font size=-1>Activity-Level:</td>
                <td><font size=-1><input type="text" size="15" name="akt" id="akt" /><a href="http://www.muskelaufbau-tipps.de/index.php/Tools/Calorie-Calculator.html" target="_blank" >Level</a> (1.2-1.7)</td>
            </tr>
            <tr>
                <td><font size=-1>daily calorie intake:</td>
                <td><font size=-1><input type="text" disabled="disabled" name="Kal" size="15" readonly="true" />calories</td>
            </tr>
            <tr>
                <td><font size=-1>intake fatloss:</td>
                <td><font size=-1><input type="text" disabled="disabled" name="KalA" size="15" readonly="true" />calories</td>
            </tr>
            <tr>
                <td><font size=-1>intake musclebuilding:</td>
                <td><font size=-1><input type="text" disabled="disabled" name="KalZ" size="15" readonly="true" />calories</td>
            </tr>
        </tbody>
    </table>
    <br />
    <input type="submit" value="Calculate" /> <input type="reset" value="Reset" />
</form>
<p><font size=-1>More Information about <a href="http://www.muskelaufbau-tipps.de/fitness-tools/calorie-calculator.html" target="_blank" >calorie intake</a> - made by <a href="http://www.muskelaufbau-tipps.de/tag/fitness.html" target="_blank" >Fitness</a>-Tipps</font></p>
<script type="text/javascript"><!--
google_ad_client = "pub-2895992929050274";
/* iG - BMI */
google_ad_slot = "1064548253";
google_ad_width = 234;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
]]></Content>
</Module>