function apriErrore(messaggio){
	$('html').addClass('noScroll'); //blocco scroll verticale
	$('select').hide(); // nascondo select per problema ie6			
	$('#modalBoxOverlay').show();	//apro finestra	
	$('#messaggio').html(messaggio);
	var offset =$('#overlay').outerHeight()/2;
	$('#overlay').css({'top':'50%', 'margin-top':'-'+offset+'px'}).fadeIn();
	$('#overlay').fadeIn();	//apro finestra	
};
function chiudiErrore(){
	$('html').removeClass('noScroll');
	$('select').show(); 
	$('#modalBoxOverlay, #overlay').hide();
};

function seleziona_risposta(el){
	var opzioni = $('[rel=opzione]').fadeIn();
	$(el).fadeOut();
	$('#risposta').val($(el).attr('val'));
}


function reminderPassword(){
	apriErrore('caricamento...');
	$.get(
		'ajax/pwd_reminder.php',
		null,
		function(data){
			$('#messaggio').html(data);
		}
	);
}

function submitForm(form_id, url, return_element_id){
	var data = $('#'+form_id).serialize();
	$.post(
		url,
		data,
		function(data){
			$('#'+return_element_id).html(data);
		}
	);
}

function apriCredits(){
	apriErrore('<img src="media/img/credits.png" style="margin-top:-90px;" />');
}

function datiSocietari(){
	apriErrore('<img src="media/img/dati_societari.png" style="margin-top:-100px;" />');
}