function ajaxSendForm(url, form, operation) {
	try {
		form.operation.value = operation;
	}
	catch (e) {
		
	}
	new Ajax.Request(url, {
		method: 'post',
		parameters: form.serialize(true)
	});	
}

function showMessage(text) {
	alert(text);
}
