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