function GetAjaxCall(url, functionName) {
  url = url;
  $.ajax({
     url: url,
     processData: false,
     dataType:  'json',
     success: functionName,
     type: 'POST'
   });
}


function AjaxListPageChange(data,responseMessage) {
	$('.AjaxList').html(data.sContentHTML);
	if(data.RedBoxHTML) {
	  $('.redbox').html(data.RedBoxHTML);
	  $('.redbox').css('display','block');
	} else {
	  $('.redbox').css('display','none');
	}
	if(data.RedBoxHTML) {
		  $('.redbox').html(data.RedBoxHTML);
		  $('.redbox').css('display','block');
		}
	if(data.data.HeaderSlideHTML) {
	  $('.headerslidenavi').html(data.HeaderSlideHTML); 
	}
	tb_init('a.thickbox, area.thickbox, input.thickbox');
}

function FeatureListShowBullets(data,responseMessage) {
  var ResponseParts = data.split('--split--');
  $('.FeatureListBullets'+ResponseParts[0]).html(ResponseParts[1]);
}