uifortuneinfo = function(id, username, offset, type)
{
	if (typeof(type) == 'undefined')
		type=1;
	$.post(HOST_HAT+"ajax/uifortuneinfo",{id:id, username:username,offset:offset,type:type},
	function(html)
	{		
		$.blockUI({
		message: html,
		css: {
			background: 'none',			
			border: 'none',
			top:  ($(window).height() - 400)/2 + 'px',
			left: ($(window).width() - 400)/2 + 'px',
			cursor: 'pointer'
			}
		});
	});
}
