function _confirmUrlAction(text, url) {
	if(confirm(text))
		location = url;
}
function _confirmSubmission(text, _form) {
	if(confirm(text))
		_form.submit();
}

function storeData(url, data) {
	jQuery.post(
		url,
		data,
		function(response) {
			$.jGrowl(response, {life:1000});
		});
}
function maximize(e) {
	if($(e).parent().parent().attr('class') == 'maximized') {
		$(e).parent().parent().attr('class', '');
	}
	else {
		$(e).parent().parent().attr('class', 'maximized');
	}
}



