function clearInp(obj, txt)
{
	(obj.value == txt)? obj.value='': obj.select();
}

function setInp(obj, txt)
{
	if((!obj.value) || (obj.value == ' '))
		obj.value = txt;
}
