function efFocus( elem, startVal, curVal )
{
	myE = document.getElementById(elem);
	myE.className = 'textfield_focus';
	if (curVal == startVal) {
		myE.value = '';
	}
}

function efBlur( elem, startVal, curVal )
{
	myE = document.getElementById(elem);
	myE.className = 'textfield_blur';
	if (curVal == startVal) {
		myE.value = '';
	}
	if (curVal == "") {
		myE.value = startVal;
	}
}

