function resetTextfield(theTextfield,initString) {
	if (theTextfield.value == initString) {
		theTextfield.value = '';
		theTextfield.style.color = '#000';
	} else if (theTextfield.value == '') {
		theTextfield.value = initString;
		theTextfield.style.color = '#888';
	}
}