﻿
function showPageLink(sUrl,iPage,iCount){
	var i;
	i=Math.max(1,iPage-1);
	document.write("<a href=\"" + sUrl + "1\" title=' 1 page'> &nbsp;[Home]&nbsp; </a> ");
	document.write("<a href=\"" + sUrl + i + "\" title='page up( " + i + " page)'> &nbsp;[page up]&nbsp; </a> ");
	for(i=Math.max(1,iPage-5);i<iPage;i++){
		document.write("<a href=\""+sUrl + i + "\" title=' " + i + " page'><b>" + i + "</b></a> ");
	}
	document.write("<font color='#ff3333'><b>" + iPage + "</b></font> ");
	for(i=iPage+1;i<=Math.min(iCount,iPage+5);i++){
		document.write("<a href=\""+sUrl + i + "\" title=' " + i + " page'><b>" + i + "</b></a> ");
	}
	i=Math.min(iCount,iPage+1);
	if(iCount>iPage+5) document.write("<span style='font-size:8px'>···</span> ");
	document.write("<a href=\"" + sUrl + i + "\" title='next page( " + i + " page)'> &nbsp;[next page]&nbsp; </a> ");
	document.write("<a href=\"" + sUrl + iCount + "\" title='end page( " + iCount + " page)'> &nbsp;[end page]&nbsp; </a> ");
}

//function killErrors(){return true;}
//window.onerror=killErrors;
