// copyright 2001-2008 DTLink, L.L.C. all rights reserved.
// http://www.dtlink.com
//
// cache the author and content of a post.

var postCacheArray = new Array();

function fv_cachePost( spotName, post_ref, posters_ref, username, content )
{

if ( !postCacheArray[ spotName ] )
	postCacheArray[ spotName ] = new Array();

postCacheArray[ spotName ][ post_ref ] = new Array();

postCacheArray[ spotName ][ post_ref ][ "posters_ref" ] = posters_ref;
postCacheArray[ spotName ][ post_ref ][ "username" ] = username;
postCacheArray[ spotName ][ post_ref ][ "content" ] = content;

// end

}
						
						
