function GetAssets(a_type, solution_id, div_id){
	$.get("/core/cfc/learning_center.cfc",{method:'GetResourcesBySolution',asset_type:eval(a_type)}, function ( reply ){
		$('#' + div_id ).html(reply);	
	});
}

