var start = cafe_getCookie('page');
function paging(start) 
{	
	cafe_setCookie('page', start+'--'+window.location.href);
	ajax_showBlogHighLight(start, document.getElementById('sort').value, document.getElementById('show').value);	
}
function delBlogHighLight(bid, title) 
{	
	if( confirm('Bạn đồng ý xóa nổi bật bài viết này không?') )
	{	
		ajax_delBlogHighLight(bid, title);			
	}	
}
function showBlogHighLight()
{
	start = cafe_getCookie('page');
	ajax_showBlogHighLight(start, document.getElementById('sort').value, document.getElementById('show').value);
}
paging(1);