function isnumeric( hostt )
{
	if( isNaN( hostt.value ) )
	{
		hostt.style.color = "red";
	} else {
		hostt.style.color = "#004772";

	}
}

