/* clear form input field on focus */ 
function clearField(obj) { 
	if (obj.defaultValue==obj.value) obj.value = '';
}

