function kw_to_hp(kw)
{
	var hp;
/*
	if (isNan(kw) == true)
	{
		alert("Ebbe a mezőbe számot írjon!");
	}
*/
	hp = Math.round(kw*1.36);

	document.setadv.horsepower.value = hp;
	return true;
}