/**
 * 提供分頁點選時的控制連結
 */
function callPaging(pageIndex)
{
	document.queryform.goto.value = pageIndex;
	document.queryform.action = document.queryform.url.value;
	document.queryform.isClickPaging.value = "Y";
	document.queryform.submit();
}
