function mm(e, f) {
	
	var a = true;
	if(typeof(window['hidden_'+e]) == "undefined"){
		window['hidden_'+e] = 1;
	}
	
	if ((window['hidden_'+e]==0) && f == 1) {
		jQuery('#'+e).toggle('blind');
		window['hidden_'+e] = 1;
		a = true;
	}
	else if ((window['hidden_'+e]==1) && f == 0) {
		jQuery('#'+e).toggle('blind');
		window['hidden_'+e] = 0;
		a = true;
	}
	if ( a ) {
		jQuery.post('/ajax.php?main;content_control;', { e: e, f: f } );	
	}
}

function mm2(e, f) {
	if(f==1)$('#content_guess').show();
	if(f==0)$('#content_guess').hide();
	jQuery.post('/ajax.php?main;content_control;', { e: e, f: f } );	
}
