codice:
witch(label) {
		case 'Preferences':
			trace('Actions here to handle Preferences.');
			
getURL("http://www.google.it")//link esterno
			
break;
		case 'Blog':
			trace('Actions here to handle Blog.');
			
getURL("galleria.html")//link interno
	
		break;
		case 'Forum':
			trace('Actions here to handle Forum.');
			break;
		default:
			trace('Default action here.');
	}
}