function clearInput(obj,text)
{
	if (obj.value == text)
		obj.value = '';
}

function setInput(obj,text)
{
	if (obj.value == '')
		obj.value = text;
}

