// JavaScript Document
function goNext(curPage, strType){
$('#thumb').load('video.asp?page=' + (curPage + 1) + '&type=' + encodeURIComponent(strType))	
}
function goPrev(curPage, strType){
	if(curPage==1 || curPage == null){
		alert('当前已经是第一页了！');
		return;
		}
$('#thumb').load('video.asp?page=' + (curPage - 1) + '&type=' + encodeURIComponent(strType))	
}
function goFirst(strType){
$('#thumb').load('video.asp?page=1&type=' + encodeURIComponent(strType))	
}
function goLast(curPage, strType){
$('#thumb').load('video.asp?page=-1&type=' + encodeURIComponent(strType))	
}

