var loadimgb = new Image();
loadimgb.src = '/template/default/images/arror_loader_b.gif';

function get_events(when,where,cat)
{
	if(where)
		where = '&region='+where;
	else
		where = '';
		
	if(cat)
		cat = '&cat1='+cat;
	else
		cat = '';
		
	document.getElementById('eventloader').style.background = 'url(/template/default/images/arror_loader_b.gif)';	

	RequestManager.send({
							type 		: 	"post",
							url 		:	'/scripthandler/getevents.php',
							data		:	'num=5&when='+when+where+cat,
							onsuccess	:	function(oResponse){
								
												revents = eval('('+oResponse.data+')');
												document.getElementById('eventspace').innerHTML = revents.body;
												document.getElementById('eventloader').style.background = 'none';						
											},
							onfailure	:	function(oResponse){
												alert("Problem retrieving data");
											}
						  });
}