// Some Class
function FCKEditorFix()
{
	this.UpdateEditorFormValue = function()
	{
		for ( i = 0; i < parent.frames.length; ++i )
			if ( parent.frames[i].FCK )
				parent.frames[i].FCK.UpdateLinkedField();
	}
}
// instantiate the class
var FckFix = new FCKEditorFix();