function focusInput(elm)
{
	elm.className = "focused";
}

function blurInput(elm)
{
	elm.className = "blurred";
}
