function orario() {;
	w_schermo = screen.width;
	h_schermo = screen.height;
	w_popup = 400 ;
	h_popup = 280 ;
	t_popup = (h_schermo-h_popup)/2
	l_popup = (w_schermo-w_popup)/2
	opzioni = 'width='+w_popup+',height='+h_popup+',top='+t_popup+',left='+l_popup+',scrollbars=yes'
	popup=window.open('/jweb/orario.asp','',opzioni);
}

function conferma_operazione(t) {
	t='ATTENZIONE:\nvuoi veramente '+t+'?';
	if (confirm(t)) { return true; }
	else { return false; }
}