<!--
function show(field) {	
	//field.style.display = 'inline'
	document.getElementById(field).style.display = 'inline';
}
function hide(field) {	
	//field.style.display = 'none'
	document.getElementById(field).style.display = 'none';
}
//-->