<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Enhanced Ability &#187; Result Document</title>
	<atom:link href="http://www.enhancedability.co.uk/tag/result-document/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.enhancedability.co.uk</link>
	<description>... building on excellence</description>
	<lastBuildDate>Mon, 10 Aug 2009 15:38:47 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Calculate Your Body Mass Index</title>
		<link>http://www.enhancedability.co.uk/2009/02/calculate-your-body-mass-index/</link>
		<comments>http://www.enhancedability.co.uk/2009/02/calculate-your-body-mass-index/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 20:36:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Body]]></category>
		<category><![CDATA[Bmi Body Mass Index]]></category>
		<category><![CDATA[Bmi Index]]></category>
		<category><![CDATA[Bmi Score]]></category>
		<category><![CDATA[Body Fat]]></category>
		<category><![CDATA[Body Mass Index]]></category>
		<category><![CDATA[Body Mass Index Bmi]]></category>
		<category><![CDATA[Calculate Bmi]]></category>
		<category><![CDATA[Centimeters]]></category>
		<category><![CDATA[Div Style]]></category>
		<category><![CDATA[Document Getelementbyid]]></category>
		<category><![CDATA[Feet]]></category>
		<category><![CDATA[Getelementbyid]]></category>
		<category><![CDATA[Height Weight]]></category>
		<category><![CDATA[Ideal Weight For Your Height]]></category>
		<category><![CDATA[Lost]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Measurement]]></category>
		<category><![CDATA[Men And Women]]></category>
		<category><![CDATA[Muscle Mass]]></category>
		<category><![CDATA[Result Document]]></category>
		<category><![CDATA[System Document]]></category>
		<category><![CDATA[Weight Pounds]]></category>

		<guid isPermaLink="false">http://www.enhancedability.co.uk/?p=100</guid>
		<description><![CDATA[Even better than knowing the ideal weight for your height is to calculate your body mass index (BMI). Body Mass Index is a measurement of fat based on your height and your weight. The body mass index is a reliable indicator of total body fat. The BMI score is valid for both men and women. [...]]]></description>
			<content:encoded><![CDATA[<p>Even better than knowing the ideal weight for your height is to calculate your body mass index (BMI). Body Mass Index is a measurement of fat based on your height and your weight. The body mass index is a reliable indicator of total body fat. The BMI score is valid for both men and women. There are some limits however as it may overestimate body fat in those who have a muscular build and may underestimate bodyfat in older people and those who have lost muscle mass. </p>
<p>Your body mass index can be used to work out whether you are overweight or obese. Here are the scores:</p>
<ul>
<li>Underweight = 18.5 or less</li>
<li>Normal weight = 18.5-24.9</li>
<li>Overweight = 25-29.9</li>
<li>Obese = 30 or more</li>
</ul>
<p><br/><br/></p>
<form>
<select id="system" onchange="show_hide();" style="width:100px;margin-bottom:10px;">
<option value="standard" selected="selected">Standard</option><br />
<option value="metric">Metric</option><br />
</select>
<div style="display:none;" id="metric_div">
<label for="kilos" style="float:left;">Weight (kilos)</label><br />
<input type="text" id="kilos" value="0" style="float:left;clear:right;" />
<div style="clear:both;"></div>
<p><label for="centimeters" style="float:left;">Centimeters</label><br />
<input type="text" id="centimeters" value="0"  style="float:left;clear:right;"/>
</div>
<div id="standard_div">
<label for="pounds" style="float:left;">Weight (pounds)</label><br />
<input type="text" id="pounds" value="0" style="float:left;clear:right;" />
<div style="clear:both;"></div>
<p><label for="feet" style="float:left;">Feet</label><br />
<input type="text" id="feet" value="0" style="float:left;clear:right;" />
<div style="clear:both;"></div>
<p><label for="inches" style="float:left;">Inches</label><br />
<input type="text" id="inches" value="0" style="float:left;clear:right;" />
</div>
<input type="button" onclick="self.get_bmi();" value="Get BMI" />
</form>
<div id="results"> </div>
<p><script language="javascript" type="text/javascript">

function get_bmi()
{
	var bmi = 0;
	var system = document.getElementById("system").value;

	if(system == "standard")
	{
		var inches = parseInt(document.getElementById("inches").value);
		inches += parseInt(document.getElementById("feet").value) * 12;
		bmi = (document.getElementById("pounds").value * 703) / (inches * inches);
	}
	else if (system == "metric")
	{	
		var meters = document.getElementById("centimeters").value / 100;	
		bmi = document.getElementById("kilos").value / (meters * meters);
	}
	bmi = Math.round(bmi*100)/100;
	result = "Your BMI is " + bmi;
	var node = document.getElementById("results");
	node.removeChild(node.childNodes[0]);
	var textnode = document.createTextNode(result);
	document.getElementById("results").appendChild(textnode);
}

function show_hide()
{
	if(document.getElementById("system").value =="standard")
	{
		document.getElementById("standard_div").style.display = "block";
		document.getElementById("metric_div").style.display = "none";
	}
	else
	{
		document.getElementById("standard_div").style.display = "none";
		document.getElementById("metric_div").style.display = "block";
	}
}

</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enhancedability.co.uk/2009/02/calculate-your-body-mass-index/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Heart Rate Training Zone</title>
		<link>http://www.enhancedability.co.uk/2009/02/heart-rate-training-zone/</link>
		<comments>http://www.enhancedability.co.uk/2009/02/heart-rate-training-zone/#comments</comments>
		<pubDate>Thu, 12 Feb 2009 15:39:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Body]]></category>
		<category><![CDATA[15 Minutes]]></category>
		<category><![CDATA[Adams Apple]]></category>
		<category><![CDATA[Beats]]></category>
		<category><![CDATA[exercise]]></category>
		<category><![CDATA[fat burning]]></category>
		<category><![CDATA[Fat Metabolism]]></category>
		<category><![CDATA[fitness]]></category>
		<category><![CDATA[Heart Rate Training]]></category>
		<category><![CDATA[Heart Rate Training Zone]]></category>
		<category><![CDATA[Heart Rate Zone]]></category>
		<category><![CDATA[heartrate]]></category>
		<category><![CDATA[Intensity]]></category>
		<category><![CDATA[Limit 0]]></category>
		<category><![CDATA[Measurement]]></category>
		<category><![CDATA[metabolism]]></category>
		<category><![CDATA[Pulse Rate]]></category>
		<category><![CDATA[Result Document]]></category>
		<category><![CDATA[Several Points]]></category>
		<category><![CDATA[Writs]]></category>

		<guid isPermaLink="false">http://www.enhancedability.co.uk/?p=70</guid>
		<description><![CDATA[The best way to know that you are exercising fat burning and metabolism boosting intensity is to measure your pulse while you exercise. If it is within your training heart rate zone for 15 minutes or more then your exercise is having a fat burning effect.
To find your training heart rate zone, you need to [...]]]></description>
			<content:encoded><![CDATA[<p>The best way to know that you are exercising fat burning and metabolism boosting intensity is to measure your pulse while you exercise. If it is within your training heart rate zone for 15 minutes or more then your exercise is having a fat burning effect.</p>
<p>To find your training heart rate zone, you need to subtract your age from 220, then calculate 65% of this amount for the lower end of your training zone and 80% for the upper limit.</p>
<p>220 &#8211; age * .65 = lower limit<br />
220 &#8211; age * .80 = upper limit</p>
<p>To find your pulse rate, you will need a watch with a second hand. There are several points at which the pulse can be felt easily: the neck on either side of the Adams apple; the writs. Apply light pressure to find the pulse. Taking your pulse for 10 seconds and multiplying it by 6 is an optimum way to measure whilst maintaining the intensity of training. It is best to take a measurement after each 10-15 minutes of exercise.</p>
<form><label for="age">Age</label><br />
<input id="age" type="text" />
<input onclick="get_heartrate();" type="button" value="Get Heart Rate" /></form>
<div id="results">&nbsp;</div>
<p><script language="javascript" type="text/javascript">
function get_heartrate()
{
	var lower_limit = 0;
	var upper_limit = 0;
	lower_limit = (220 - document.getElementById("age").value) * .65;
	upper_limit = (220 - document.getElementById("age").value) * .80;
	result = "Your heart rate should be between " + parseInt(lower_limit) + " and " + parseInt(upper_limit);
	result += " per minute. Beats in 10 seconds would be " + parseInt(lower_limit/6) + "/" + parseInt(upper_limit/6) + ".";
	var node = document.getElementById("results");
	node.removeChild(node.childNodes[0]);
	var textnode = document.createTextNode(result);
	document.getElementById("results").appendChild(textnode);
}
</script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enhancedability.co.uk/2009/02/heart-rate-training-zone/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
