function nuoviFck(nomeTextArea)
{
	// Automatically calculates the editor base path based on the _samples directory.
	// This is usefull only for these samples. A real application should use something like this:
	// oFCKeditor.BasePath = '/fckeditor/' ;	// '/fckeditor/' is the default value.
	var sBasePath = 'fckeditor/' ;
	var oFCKeditor = new FCKeditor( nomeTextArea,'450','300','MyToolbar' ) ;
	oFCKeditor.BasePath	= sBasePath ;
	var sSkinPath = 'http://www.tennispadova.com/fckeditor/editor/skins/silver/' ;
	oFCKeditor.Config['SkinPath'] = sSkinPath ;
	// The following switch is optional. It is done to enhance the loading
	// time of the toolbar, by preloading the images used on it.
	
	oFCKeditor.Config['PreloadImages'] =
		sSkinPath + 'images/toolbar.start.gif' + ';' +
		sSkinPath + 'images/toolbar.end.gif' + ';' +
		sSkinPath + 'images/toolbar.buttonbg.gif' + ';' +
		sSkinPath + 'images/toolbar.buttonarrow.gif' ;
	
	oFCKeditor.ReplaceTextarea() ;
}