function setup_hint(obj,str)
{
	if(obj.value=="")
	{
		obj.value=str;
		obj.style.color="#AAAAAA";
	}
}

function remove_hint(obj,str)
{
	if(obj.value==str)
	{
		obj.value="";
		obj.style.color="#000000";
	}
}