function reportPanel(regionId,countryId,reportURL,insight) {

	

	var panel = document.getElementById('reports_panel');

	if(panel){

	  new Ajax.Request(	'ajax_functions.php?action=report_panel&region_id=' + regionId + '&country_id=' + countryId + '&insight=' + insight, {

											asynchronous:true,

											onComplete:function(req) {

												if (req.readyState == 4) {

													if (req.status == 200){

														panel.innerHTML = req.responseText;

													}

												}

											}

			}

		);

	}

	else

		window.location = reportURL;

}