// FUNZIONI PAGAMENTO
// ATTIVARE IPN E PDT
function send_paypal_request(){
	form = document.getElementById('paypal');
	document.getElementById('cmd').value = '_donations';
	document.getElementById('lc').value = 'IT';
	document.getElementById('business').value = 'donazioni@elemosina.it';
//	document.getElementById('business').value = 'france_1217001989_biz@email.it';
	document.getElementById('no_shipping').value = '1';
	document.getElementById('no_note').value = '1';
	document.getElementById('currency_code').value = 'EUR';
	document.getElementById('item_name').value = 'Elemosina.it - Donazione';
	document.getElementById('return').value = 'http://www.elemosina.it/pym';
	document.getElementById('rm').value = '2';
	form.action = 'https://www.paypal.com/cgi-bin/webscr';
//	form.action = 'https://www.sandbox.paypal.com/cgi-bin/webscr';
	form.submit();
}
