function favorite_formPost(postUrl) {
 	postData = new Object();
 	postData.postType			= 'ajax';
 	postData.submit				= 'submit'; 	 
 	postData.account_id         = $('#account_id').attr('value');
 	postData.item_type          = $('#item_type').attr('value');
	postData.item_id            = $('#item_id').attr('value');		
	
	if ($('#public_id').attr('checked') == true)
		postData.public				= $('#public_id').attr('value');	
	else	
		postData.public				= $('#private_id').attr('value');		
		
		
 	$("#TB_ajaxContent").html("<div id='TB_load'><img src='"+imgLoader.src+"' /></div>");
 	$("#TB_load").show();
 	
 	$.post(postUrl, postData, function(html) { $("#TB_ajaxContent").html(html); }, 'html');
 		
}
