//Copyright 2006 www.cashmain.com. All Rights Reserved

var g_jsgraphics_pool = new Array();


function get_jsgraphics(div_id)
{
	for(var i = 0 ; i < g_jsgraphics_pool.length; i++){
		if(g_jsgraphics_pool[i].id == div_id)
			return g_jsgraphics_pool[i];
	}
	g_jsgraphics_pool[g_jsgraphics_pool.length] = new jsGraphics(div_id);
	return g_jsgraphics_pool[g_jsgraphics_pool.length - 1];
}

