function clearBox(f) {
	if(f.defaultValue==f.value) {
		f.value = '';	
	}
}

function restoreBox(f) {
	if(f.value=='') {
		f.value = f.defaultValue;	
	}
}

function s(id) {
	document.getElementById(id).style.display = 'block';
}

function h(id) {
	document.getElementById(id).style.display = 'none';
}
