function getFeelsLike(dp)
	{
	if (dp<40)
		{document.write("<span style='font-size: 1em;'><p class='small'>The air is uncomfortable dry for most people</p><p class='small'>and there is a high fire danger risk.</p></span>")};
	if (dp>=40 && dp<50)
		{document.write("<span style='font-size: 1em;'><p class='small'>The air is a bit dry for most people</p><p class='small'>and the fire danger risk is increasing.</p></span>")};
	if (dp>=50 && dp<55)
		{document.write("<span style='font-size: 1em;'><p class='small'>The air feels comfortable.</p></span>")};
	if (dp>=55 && dp<60)
		{document.write("<span style='font-size: 1em;'><p class='small'>The air generally feels comfortable.</p></span>")};
	if (dp>=60 && dp<63)
		{document.write("<span style='font-size: 1em;'><p class='small'>The air is beginning to feel humid</p><p class='small'>and is uncomfortble for some people.</p></span>")};
	if (dp>=63 && dp<67)
		{document.write("<span style='font-size: 1em;'><p class='small'>The air feels humid and</p><p class='small'>uncomfortble for many people.</p></span>")};
	if (dp>=67 && dp<70)
		{document.write("<span style='font-size: 1em;'><p class='small'>The air feels humid and</p><p class='small'>uncomfortble for most people.</p></span>")};
	if (dp>=70 && dp<75)
		{document.write("<span style='font-size: 1em;'><p class='small'>The air feels very humid and</p><p class='small'>quite uncomfortble for all people.</p></span>")};
	if (dp>=75)
		{document.write("<span style='font-size: 1em;'><p class='small'>The air feels tropically humid</p><p class='small'>and oppressive for all people.</p></span>")};
	}

