function invia(top){
$('div_expo').fade('out');
$('risposta').fade('in');
$('div_expo').morph('.myClass');
$('risposta').morph('.myResponse2');
$('cssform').morph({height: 200});
//if(top==true){new Fx.Scroll(window).toElement('bordertop');}
setTimeout("ajax()",2000);
}

	function ajax(){
	$('cont').setStyle('background', 'none');
	$('messaggio').morph('.risultato2');
	$('messaggio').fade('in');
	$('risposta').morph('.myResponse');
	$('risposta').fade('out');


	var ajax = new Request.HTML({
		url: '/inc/php/form.php?op=abbonamenti',
		encoding: 'iso-8859-1',
		onSuccess: function(html){
						$('messaggio').adopt(html);
		},
		onFailure: function(){
			$('messaggio').set('text', 'Richiesta fallita.');
		}		
	}).post($('abb_41'));
}		
