function restore(what, fill) {
what = document.getElementById(what);
filled = what.value;
	if (filled == fill) {
		what.value = '';
	} else if (filled == '') {
		what.value = fill;
	}
}
