12345678910111213

retrieveLoadVars.onLoad = function(success)
{
	if(success)
	{
		trace(retrieveLoadVars.name1);// print out results to the output window
		trace(retrieveLoadVars.name2);// print out results to the output window
	} else //data not loaded
	{
		trace("error");// print out error to the output window
	}
}