

	function savesinglefield(destid,div_id,action,fieldName,inputtype){
	 	document.body.style.cursor = 'wait';
		var url = '/destinations/destajax.cfm';
		var output_container = div_id;
		var val = $F(fieldName); 
		if(val == 'on' && fieldName == 'dest_site_complete'){
			alert("Please don't forget to add Wcities City Guides to this Destination.");
		}
		var pars = 'action='+action+'&destid=' + destid +'&fieldValue='+val + '&fieldName=' + fieldName + '&inputtype=' + inputtype;
		var myAjax = new Ajax.Updater(
				output_container, //the div container id
				url, // the url
				{
					method: 'post', // use post because gets are cached in IE, just a tip.
					parameters: pars, // my query string
					onSuccess: function(){document.body.style.cursor = 'default';}
				});
			
		}
