$(document).ready(function(){
						
	$('form.privacy_check').submit(function(){
		var form = this;

		var buttonsOpts = {}
		buttonsOpts[$(".privacy_ok").text()] = function() {
						$( this ).dialog( "close" );
						form.submit();
					};
		buttonsOpts[$(".privacy_annulla").text()] = function() {
						$( this ).dialog( "close" );
					};
				
		if($(".privacy_msg").text() != ""){
			$( ".privacy_msg" ).dialog( "destroy" );
		
			$(".privacy_msg").dialog({
				resizable: false,
				height:300,
				modal: true,
				buttons: buttonsOpts
			});
			
			return false;
		};
	});
	
	$('form.privacy_check_news').submit(function(){
		var form = this;
		
		var buttonsOpts = {}
		buttonsOpts[$(".privacy_ok_news").text()] = function() {
						$( this ).dialog( "close" );
						form.submit();
					};
		buttonsOpts[$(".privacy_annulla_news").text()] = function() {
						$( this ).dialog( "close" );
					};
					
		if($(".privacy_msg_news").text() != ""){
			$( ".privacy_msg_news" ).dialog( "destroy" );
		
			$(".privacy_msg_news").dialog({
				resizable: false,
				height:300,
				modal: true,
				buttons: buttonsOpts
			});
			
			return false;
		};
	});

});
