Hi,
There was error in my case into the output code. It was returning bad URL like simple-flash-video/video.php?&arguments=... Which results in invalid XHTML code.
I have solved this by the easiest way. In simple-flash-video.php at line 1198 I have added:
$output = str_replace('?&', '?', $output);
Cheers ;)