function ajaxCourses(countyid, regionid, countyname, scriptonly) {
  document.getElementById("googlemap").style.display = '';
  document.getElementById("map_title").innerHTML = "<b>" + countyname + "</b>";
  
  jQuery.ajax({
   url : "/ajax/courses/getCourses.cfm",
   data : "countyid=" + countyid + "&regionid=" + regionid + "&scriptonly=" + scriptonly,
   cache : false,
   type : "GET",
   beforeSend : function() {
    jQuery('#map_canvas').html('<p align="center"><img src="/ajax/images/gk-ajax-loader.gif" /></p>');
	
	jQuery('#countyCourses').html('<div style="width: 100%; height: 150px"></div>');
	jQuery('#countyCourses').block({
		message: '<h4>Loading Courses...</h4><p align="center"><img src="/ajax/images/gk-ajax-loader.gif" /></p>'
	});
   },
   success : function(response, status) {
    jQuery('#countyCourses').html(response);
   },
   complete : function() {
    jQuery('#countyCourses').unblock();
   }
  });
}

function ajaxMap(countyid, regionid, countyname, scriptonly) {
  document.getElementById("googlemap").style.display = '';
  document.getElementById("map_title").innerHTML = "<b>" + countyname + "</b>";
  
  jQuery.ajax({
   url : "/ajax/courses/getCourses.cfm",
   data : "countyid=" + countyid + "&regionid=" + regionid + "&scriptonly=" + scriptonly,
   type : "GET",
   dataType: "script"
  });
}
