
	function callCase(who) {
		$('#content').css('display','none');
		$.post("getDataCase.php", { whoCase: who },
		function(data){
			// $('#content').html(data);
			document.getElementById('content').innerHTML = data;
		    // $$.show();
			$('#content').fadeIn("slow");
			// alert(data);
		}, "text/html");

	}
