window.addEvent('domready', function(){
	$('calc').addEvent('click', function(){
		new Ajax(
			'index.php?option=com_calc&tmpl=component',			
			{
				method: 'post',	
				data: $('diplom_calc'),
				update: $('res')
			}
		).request();
	});
});
