
function setInputMsg(that, msg) {
	if (that.value == msg) {
		that.value = '';
	} else if (that.value.length < 1) {
		that.value = msg;
	}
}