function CalculateBMI(BodyHeight,BodyWeight)
{
	if(BodyHeight>0)
	{
		return(((BodyWeight)/(Math.pow(BodyHeight,2))).toFixed(1));
	}
	else
	{
		return(0);
	}
}

