function LoadFPlayer( where, url )
{ 
 var videoFPlayerHTML = ''
 + '<object id="FPlayer" onClick="return false;" '
 + 'width="325" ' 
 + 'height="300" '
 + '> '
 + '<param name="URL" value="' + url + '"> '
 + '<param name="allowFullScreen" value="true"></param> '
 + '<param name="autoStart" value="true"> '
 + '<param name="allowscriptaccess" value="always"></param> '
 + ' <embed  id="FPlayer" name="FPlayer" type="application/x-shockwave-flash" '
 + ' src="' + url + '" '
 + ' allowscriptaccess="always" '
 + ' allowfullscreen="true" '
 + ' play="true" '
 + '  loop="true" '
 + '  quality="high" '
 + ' width="325" '
 + '  height="300" '
 + '  > '
 + '  </embed> '
 + '</object> '
 + '<div style="text-align: center; vertical-align: center;"><a href="' + url + '" title="View video file, Flash Player required.">Video</a></div>';
 where.innerHTML = videoFPlayerHTML;
}