<!--

	function msg(mymsg){
		alert(mymsg);
	}

	function launchWin(filepath, filename, fileext, larghezza, altezza, features, mytop, myleft){
		var newWin;
		//alert('window.open("' + filepath + '/' + filename + '.' + fileext + '", "mywin' + filename + '", " ' + features + ' width=' + larghezza + ',height=' + altezza + ',top=' + mytop + ',left=' + myleft + '")');
		newWin = eval('window.open("' + filepath + '/' + filename + '.' + fileext + '", "mywin' + filename + '", " ' + features + ' width=' + larghezza + ',height=' + altezza + ',top=' + mytop + ',left=' + myleft + '")');
	}
	//Possibili valori di features:
	//
	//Esempio di richiamo funzione:
	//launchWin('../[nomedir]','[nomefile]','[estensione]', [larghezza], [altezza], 'toolbar=no,status=no,menubar=no,resizable=no,fullscreen=no,', [top], [left]);

-->
