codice:
id = new Array("pippo", "pluto", "minni", "topolino");
ok.onRelease = function() {
	for(i = 0;i< id.length;i ++){
		if (id[i] == us) {
			flag = 1;
			break;
		}else{
			flag = 0;
		}
	}
	if(flag == 1){
		getURL(...);
	}else{
		getURL(...);
	}
}