<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>BMI Calculator AKA Body Mass Index Calculator</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="weightmain.css" rel="stylesheet" type="text/css">
<SCRIPT LANGUAGE="JavaScript" SRC="/scripts/validate.js" TYPE="text/javascript"></SCRIPT>
<SCRIPT LANGUAGE="JavaScript">

<!-- Original:  Marat Rikelman (rikelman@bellsouth.net) -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function mod(div,base) {
return Math.round(div - (Math.floor(div/base)*base));
}
function calcBmi() {
var w = document.bmi.weight.value * 1;
var HeightFeetInt = document.bmi.htf.value * 1;
var HeightInchesInt = document.bmi.hti.value * 1;
HeightFeetConvert = HeightFeetInt * 12;
h = HeightFeetConvert + HeightInchesInt;
displaybmi = (Math.round((w * 703) / (h * h)));
var rvalue = true;
if ( (w <= 35) || (w >= 500)  || (h <= 48) || (h >= 120) ) {
alert ("Invalid data.  Please check and re-enter!");
rvalue = false;
}
if (rvalue) {
if (HeightInchesInt > 11) {
reminderinches = mod(HeightInchesInt,12);
document.bmi.hti.value = reminderinches;
document.bmi.htf.value = HeightFeetInt + 
((HeightInchesInt - reminderinches)/12);
document.bmi.answer.value = displaybmi;
}
if (displaybmi <19) 
document.bmi.comment.value = "Underweight";
if (displaybmi >=19 && displaybmi <=25) 
document.bmi.comment.value = "Desirable";
if (displaybmi >=26 && displaybmi <=29) 
document.bmi.comment.value = "prone to health risks";
if (displaybmi >=30 && displaybmi <=40) 
document.bmi.comment.value = "Obese";
if (displaybmi >40) 
document.bmi.comment.value = "Extremely obese";
document.bmi.answer.value = displaybmi; }
return rvalue;
}
//  End -->


</script> 


</head>

<body link="#404c80" vlink="#0308E3" alink="#0308E3" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<table width="750" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><img src="images/header.gif" width="748" height="89" border="0" usemap="#header"></td>
  </tr>
</table>
<table width="750" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="149" valign="top" bgcolor="d8d8e8"><p>&nbsp;</p>
      <p><img src="images/newslettertitle.gif" width="149" height="21"></p>
      <p class="lefthandtext">Diet pills, fast weight loss & diet 
       supplements questions answered in the weight loss guide 
       newsletter monthly</p>
      <form action="/cgi-local/sub.pl" method="post" name="form1" class="lefthandtext">
        <input type="hidden" name="required" value="realname,email">
        First Name<br>
        <input name="realname" type="text" size="15">
        <br>
        Email Address<br>
        <input name="email" type="text" size="15">
        <br>
        <input type="submit" name="Submit" value="Submit">
      </form>
      <p><img src="images/producttitle.gif" width="149" height="21"></p>
      <p class="lefthandtext">
        <a href="meltrx.html"><img src="/images/point.gif" border="0"> MeltRX 24 Ultra</a><br>        
        <a href="protein-shakes.htm"><img src="/images/point.gif" border="0"> Protein Shakes</a><br>
        <a href="lose-body-fat.html"><img src="/images/point.gif" border="0"> Weight Loss System</a><br>
        <a href="best-way-to-lose-weight.htm"><img src="/images/point.gif" border="0"> Ultimate Success Kit</a><br>      
        <a href="fat-blaster.htm"><img src="/images/point.gif" border="0"> Fat Blaster</a><br>        
        <a href="cellulite-reduction.htm"><img src="/images/point.gif" border="0"> Cellulite Eraser</a><br>
        <a href="appetite-suppressants.htm"><img src="/images/point.gif" border="0"> Hunger Block Plus</a><br>
        <a href="natural-antidepressants-rhodiola-rosea.htm"><img src="/images/point.gif" border="0"> Natural Antidepressants</a><br>
        <a href="fat-burners.htm"><img src="/images/point.gif" border="0"> Lipofuel thermogenic pill</a><br>               
        <a href="pure-protein-bars.htm"><img src="/images/point.gif" border="0"> Pure Protein Bars</a><br>
        <a href="lipotropic-fat-burners.htm"><img src="/images/point.gif" border="0"> The Slenderizer</a><br>      
        <a href="fat-loss-supplement.htm"><img src="/images/point.gif" border="0"> Fat Loss Catalyst</a><br>  
        <a href="weightloss-products.htm"><img src="/images/point.gif" border="0"> Fat Burning Metabolites</a><br> 
        <a href="fat-blocker.htm"><img src="/images/point.gif" border="0"> TrapRx™ Fat Blocker</a><br>
        <a href="fast-weightloss.htm"><img src="/images/point.gif" border="0"> Nightime Fat Burner</a><br>
        <a href="flaxseed.htm"><img src="/images/point.gif" border="0"> Flax Seeds (organic)</a><br>         
        <a href="conjugated-linoleic-acid.htm"><img src="/images/point.gif" border="0"> Tonalin® CLA</a><br>     
        <a href="substitute-viagra.htm"><img src="/images/point.gif" border="0"> Supercharged Sex </a><BR>
        <CENTER><FONT face="Verdana" size="1"><A HREF="#" onClick="javascript: OpenWinRec('rec_pop-up.htm'); return false;"><hr><B>RECOMMEND THIS SITE</A></B></FONT>
        <hr></CENTER></p></td>
    <td width="15">&nbsp;</td>
    <td width="586" valign="top"> <p>&nbsp;</p>
      <table cellpadding=0 cellspacing=0 border=0 ><tr><td align="left">

<h3>BMI Calculator</h3>

<form name=bmi>
<table width=400 border=0>
<tr>
<td align=left><B>Weight:</B>
<input type=text name=weight SIZE=3 maxlength=3> lbs.</td>
</tr>
<tr>
<td align=left><B>Height:</B>
<input type=text name=htf size=1 maxlength=1> Ft.         
<input type=text name=hti size=2 maxlength=2> In.
</td>
</tr>
<tr>
<td align=left>
<input type=button value="Calculate BMI" onclick="calcBmi()"> 
<hr>
</td>
</tr>
<tr>
<td><B>Your BMI Is...</B>
<input type=text name=answer size=2>
</td>
</tr>
<tr>
<td>
According to the Panel on Energy, Obesity, and 
Body Weight Standards published by American 
Journal of Clinical Nutrition, your weight <b>category</b> is...<br>
<input type=text name=comment size=25>
</td>
</tr>
</table>
</form>

<FONT FACE="Times New Roman" COLOR="#800000">
<P>
<FONT FACE="ARIAL" COLOR="#000000"><b><FONT SIZE=+"-1">
Don't Tempt Fate By Being Overweight!
</FONT>
</b>
<BR>
<A HREF="protein-shakes.htm"><b><U>Click Here to Get The Help You Need!</U></b></A>
<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br>



      </td>
  </tr></table>
  <tr>
    <td width="149" bgcolor="d8d8e8">&nbsp;</td>
    <td width="15">&nbsp;</td>
    <td width="586"><p align="center">&nbsp;</p>
      <p align="center"><font size="-1" face="Arial, Helvetica, sans-serif">
      <a href="#" onClick="javascript: OpenWinRec('rec_pop-up.htm'); return false;">Recommend this site</a> | <a href="contact.htm">Contact Us</a> | 
      <a href="free_resources.htm">Useful Resources</a> | <a href="disclaim.htm">Disclaimer</a> | 
      <a href="weightlossproducts.htm">Products</a> | <a href="all-testimonials.htm">Testimonials</a> | <a href="index.htm">Home</a></font><br>
      <font size="-2" face="Arial, Helvetica, sans-serif">&copy;1998-2003. WeightLossGuide. 
        All Rights Reserved</font></p>
      </td>
  </tr>
</table>
<p>&nbsp;</p>
<map name="header">
  <area shape="rect" coords="630,68,675,86" href="index.html" alt="Weightlossguide home page">
  <area shape="rect" coords="680,68,743,85" href="contact.htm" alt="Contact Us">
  <area shape="rect" coords="390,46,497,67" href="free_resources.htm" alt="Free Resources">
  <area shape="rect" coords="509,46,622,67" href="weightlossproducts.htm" alt="Full Product List">
  <area shape="rect" coords="634,46,745,67" href="all-testimonials.htm" alt="Testimonials">
</map>
</body>
</html>
