function is_null(elm)
{
	if (elm.value == "")
		return true;
	return false;
}