

function change_cruise_ship_status(id,status){

	new ajax('ajax.php', {postBody:'method=change_cruise_ship_status&id='+id+'&status='+status, onComplete:change_curise_ship_status_callback});	
}

function change_curise_ship_status_callback(request){
	
	if(request.responseText == "OK")
		alert("Cruise Ship status has been updated successfully.");
	else
		alert("Cruise Ship status has not been updated. Please Try again.");
}