// JavaScript Document
	function pager(fullUrl,currentPage,maxPage)
	{
		document.write("<font style='font-family:&#23435;&#20307;;font-size:9pt;'>");
		if (currentPage==1){
			document.write("<font color='#aaaaaa'><font style='font-family:webdings'>9</font> ");
			document.write("<font style='font-family:webdings'>7</font></font> <b>");
		}else{
			document.write("<a href='" + fullUrl + "_1.aspx'><font style='font-family:webdings'>9</font></a> ");
			document.write("<a href='" + fullUrl + "_" + (currentPage-1) + ".aspx'><font style='font-family:webdings'>7</font></a> <b>");
		}
		var i;
		var j;
		var k;
		if (currentPage-5<1){
			j=1;
		}else{
			j=currentPage-5;
		}
		if (currentPage+5<maxPage){
			k=currentPage+5;
		}else{
			k=maxPage;
		}
		for(i=j;i<k+1;i++){
			if (currentPage==i){
				document.write("<font color='red'>" + i + "</font> ");
			}else{
				document.write("<a href='" + fullUrl + "_" + i +".aspx'>" + i + "</a> ");
			}
		}
		if (currentPage==maxPage){
			document.write("</b><font color='#aaaaaa'><font style='font-family:webdings'>8</font> ");
			document.write("<font style='font-family:webdings'>:</font></font>")	;
		}else {
			document.write("</b><a href='" + fullUrl + "_" + (currentPage +1) + ".aspx'><font style='font-family:webdings'>8</font></a> ");
			document.write("<a href='" + fullUrl + "_" + maxPage + ".aspx' ><font style='font-family:webdings'>:</font></a>");
		}
		document.write("</font>");
	}
