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