//跳转页面显示
function ShowPage_all(TotalPage,PageIndex,url){
if (TotalPage>1)
{

document.write("");
if (PageIndex<6){PageLong=11-PageIndex;}
else
if (TotalPage-PageIndex<6){PageLong=10-(TotalPage-PageIndex)}
else{PageLong=5;}
if(PageIndex>1){
//	document.write("<a href=?"+url+" title='首页'><img src=/images/first.gif alt=首页 border=0 align=absbottom onmouseover=this.src='/images/first2.gif' onmouseout=this.src='images/first.gif' /></a><a href=?PageIndex="+(PageIndex-1)+"&"+url+" title='上一页'><img src=/images/prev.gif alt=上一页 border=0 onMouseOver=this.src='/images/prev2.gif' onMouseOut=this.src='/images/prev.gif' align=absbottom></a>");
}
document.write("");
for (var i=1; i <= TotalPage; i++) {
if (i < PageIndex+PageLong && i > PageIndex-PageLong || i==1 || i==TotalPage){
if (PageIndex==i){document.write("&nbsp;<span class='page_nmu'><span><strong>"+i +"</strong></span></span>&nbsp;|");}else{document.write("<td>&nbsp;<span class='page_nmu'><span><a href=?PageIndex="+i+"&"+url+">"+ i +"</a></span></span>&nbsp;|");}
}
}
document.write("");
if(PageIndex<TotalPage){
//	document.write("&nbsp;<a href=?PageIndex="+(PageIndex+1)+"&"+url+" title='下一页'><img src=/images/next.gif alt=下一页 border=0 onMouseOver=this.src='/images/next2.gif' onMouseOut=this.src='/images/next.gif' align=absbottom></a><a href=?PageIndex="+TotalPage+"&"+url+" title='末页'><img src=/images/last.gif alt=末页 border=0 align=absbottom onmouseover=this.src='/images/last2.gif' onmouseout=this.src='/images/last.gif' /></a>");
}
document.write("");
}}
//检查数字2006-7-31
function isnum(value_1){
	var numRE = /^\d+$/;

	if (value_1 != "")
	{
		if (!numRE.test(value_1)){
			return false;
		}
		else
		{
		return true;
		}
	}
	else
	{
	return false;
	}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}