/**
 * Decodes JSON and sends it back into the flash movie
 * It will load the values into the root 
 *
 * @example request_ReviewRatings(10,5)
 * @param string $flashMovie  The name of the flashMovie making the request
 * @param string $flashVariable  The name of the Variable (array) that will be populated  
 * @param string $json The Encoded JSON needing decoding
 */
 /*
function flash_JSON_decode($flashMovie, $flashVariable, $json)
{
   var flashMovie = getFlashMovieObject($flashMovie);
   var json_object = new Function("return "+$json)();
   
   var length = 5;
   for (i=0; i<length; i++)
   {
       flashMovie.SetVariable("/:"+$flashVariable+":"+i, json_object[i]);
   }
   flashMovie.SetVariable("/:"+$flashVariable+":loadJSON", 1);
   
   
   alert($json);
}
*/
