Rating does not work.
It is necessary to add this one piece of code,
//AddFieldValue(K_MOVIE_MPAA, lText);
	AddFieldValueXML('mpaa', lText);or example, this
{ Movie mpaa }
	lPosition := Pos(K_MOVIE_MPAA_TRT, HTML);
	lText := TextBetween(HTML, K_MOVIE_MPAA_BGN, K_MOVIE_MPAA_END, False, lPosition);
	//AddFieldValue(K_MOVIE_MPAA, lText);
	AddFieldValueXML('mpaa', lText);
	LogMessage('lMoviempaa : ' + lText);and will it work this time.
You can add this -  DVD Features:
K_MOVIE_DVD_TRT = ' DVD Features</span></span></h2>';
	K_MOVIE_DVD_BGN = '<p>';
	K_MOVIE_DVD_END = '</p></div>';
        .
        .
        .
        .
        .
	{ Movie dvd }
	lPosition := Pos(K_MOVIE_DVD_TRT, HTML);
	lPosBgn := PosFrom(K_MOVIE_DVD_BGN, HTML, lPosition);
	lPosEnd := PosFrom(K_MOVIE_DVD_END, HTML, lPosBgn);
	lText := Trim(Copy(HTML, lPosBgn+3, lPosEnd - lPosBgn-3));
	AddFieldValue(K_MOVIE_FEATURES, lText);
	LogMessage('lMovieDvd : ' + lText);