function submitGadget(format, pages) {
	if (pages) $('#pages').val(pages);
	else $('#pages').val(($('#month:checked').length)?13:5);
	$('#format').val(format);
	$('#sfCreateGadget').submit();
}

$(function() {
	$('.actionMonthQuaterWindow').click(function() {
		$.sfWindow.open(($('#month:checked').length)?$(this).attr('href'):$(this).attr('rel'));
		return false;
	});
});

