function getArticlePage(url){
			var pageNo ;
			var re = /(^http:\/\/[^\/]+[\/?\w+?\/?]+(\d*)\/(\d+(\d{1})(\d{2})))(\-?)(\d*)\/?[\.|\w+]*$/g;
			if(url.match(re)){
			    pageNo = url.replace(re,"$7");
			}
			var pages = "";
			if(pageNo == null || pageNo == ""){
				pageNo = 1;
			}
			if(totlePage > 1){
				if(pageNo>1){
					pages += '<font class="disabled"><a href="' + getArticleUrl(url,pageNo-1) + '" target="_self" class="disabled">上一页</a></font>';
				}
				for(i=1; i<=totlePage; i++){
					if(pageNo == i){
						pages += '<span class="current">' + i + '</span>';
					}else{
						pages += '<font class="disabled"><a href="' + getArticleUrl(url,i) + '" target="_self">' + i + '</a></font>';
					}
				}
				if(pageNo < totlePage){
					pages += '<font class="disabled"><a href="' + getArticleUrl(url,parseInt(pageNo)+1) + '" target="_self" class="disabled">下一页</a></font>';
				}
			}
			return pages;
		}


		function getArticleUrl(url,pageNo){
			var re = /^http:\/\/[^\/]+([\/?\w+?\/?]+(\d*)\/(\d+(\d{1})(\d{2})))(\-?)(\d*)\/?[\.|\w+]*$/g;
			var articleUrl,pageMark;
			if(url.match(re)){
				articleUrl = url.replace(re,"$1");
				pageMark = url.replace(re,"$6");
			}
			if(pageNo >= 1){
				articleUrl += "-" + pageNo + ".shtml";
			}
			return articleUrl;
		}