jQuery.ajaxSetup({
	//cache: false,
	////url: '/xmlhttp/',
	//global: false,
	type: 'POST',
	dataType: 'json', // xml, html, script, json, text, _default
	error: function (data, status, e) {
		//alert('status= '+status+', e= '+e);
		jQuery("#ajresult").show();
		//jQuery.scrollTo('#ajresult',200,{}); // {easing:'elasout'} 
		jQuery('#ajresult').html(e);
	}
});
//jQuery(document).ready(function() {});
