<!-- Begin
function convertInchCent(height, inches, centimeters) {
centimeters.value = height.value * 25.4;
inches.value = height.value / 25.4;
}
function convertLbsKg(weight,lbs,kg) {
kg.value = weight.value * 0.45359;
lbs.value = weight.value / 0.45359;
}
//  End -->

