/* REDAZIONE OFFLINE */
$(function(){
	$('#redazione-sub').hide();
	$('#control').show();
	$('#message-container').hide();
	$('#message-container').css({'position':'absolute','width':'580px'});
	
	var url_to_validate = $('.validate').attr('href');
	$('.validate').attr('href','#val');
	$('.validate').click(function(){
		validate(url_to_validate);
	});
});

/* APRI BLOCCO */
function openBlock(id) {
        var img_dir = '';
	if($(id).is(':hidden')) {
		$(id).slideDown('normal');
		$('#control img').attr('src',img_dir+'/min-off.gif');
		$('#control img').attr('alt','Chiudi');
		$('#control').css('margin-bottom','-20px');
	} else {
		$(id).slideUp('normal');
		$('#control img').attr('src',img_dir+'/plus-off.gif');
		$('#control img').attr('alt','Apri');
		$('#control').css('margin-top','0');
	}
}

/* MESSAGGIO DI CONFERMA */
function confirmMsg(block) {
	var yScroll = $(window).scrollTop();
	var pageWidth = $(window).width();
	var pageHeight = $(window).height();
	var msgHeight = $(block).outerHeight(true);
	
	$(block).fadeIn('normal');
	$('#wrapper, #redazione').fadeTo('fast',0.15);
	$(block).css('left',  Math.floor((pageWidth-602)/2)+'px');
	$(block).css('top',  Math.floor(yScroll+(pageHeight-msgHeight)/2)+'px');
	setTimeout(function(){
		$(block).fadeOut('normal');
		$('#wrapper, #redazione').fadeTo('fast',1.0);
	}, 2300);
}

/* CHIMATA AJAX PER LA VALIDAZIONE */
function validate(url) {
	$.ajax({
		url: url,
		type: 'get',
		dataType: 'html',
		data: 'tpl=portlet/validation',
		beforeSend: function(){
			$('#val-msg').hide();
			$('.loader').show();
		},
		success: function(data){
			$('.loader').hide();
			$('#val-msg').show();
			$('#val-msg').html(data);
		},
		error: function(XMLHttpRequest, textStatus, errorThrown){
			$('#val-msg').show();
			$('#val-msg').html(textStatus);
		}
	});
}
