function cmInch(cm)
{
	var res=cm*0.3937
	res=Math.round(10*res)/10;
	var dec=Math.round((res-Math.floor(res))*10);
	var feet=Math.floor(res/12)
	var inch=Math.floor(res-feet*12)
	return feet +"' "+ inch +"."+dec +"''"
}
function kgLbl(kg)
{
	return Math.round(kg*2.2046)
}