// Clearing form fields

function clearField(obj,defVal) {
	if(obj.value == defVal)
	obj.value = '';
}

function resetField(obj,defVal) {
	if(obj.value == '')
	obj.value = defVal;
}