/*
Copyright 2002 WWW.thatmusic.ORG Limited. All rights reserved.
Write by	2002-9-1
Edit  by	zhongyuan
Emailto:	zhongyuan@thatmusic.org
HomePage:	http://www.thatmusic.org
Address:	Kunming China
*/

var PageHtml

function page(Path,AllNum,MaxNum,Page,Show){
MaxPage=Math.floor(AllNum/MaxNum)+1;
if (Page>MaxPage) Page=MaxPage+1
if (MaxPage==0) MaxPage=1
bgimg_num=0;
if (Show==null) bgimg_num=3;
PageHtml=
'<TABLE cellSpacing=0 cellPadding=0 width=100% border=0>' +
'  <TBODY><FORM name="to_page" method="get" action="' + Path + '">' +
'  <TR>' +
'    <TD width=12><IMG height=33 src="http://www.kudo.cn/images/bg'+(1+bgimg_num)+'.gif" width=12 border=0></TD>' +
'    <TD class=p9 width=100% background=http://www.kudo.cn/images/bg'+(2+bgimg_num)+'.gif';
if (Show==null) PageHtml+=' align="right"'
PageHtml+='><B>&gt;&gt;分页</B>：';
if (Page>1) PageHtml+='<a href="' + Path + '&page=1">';
PageHtml+='首页</a>&nbsp;';
if (Page>1) PageHtml+='<a href="' + Path + '&page=' + (Page-1) + '">';
PageHtml+='前页</a>&nbsp;';
if (MaxPage>Page) PageHtml+='<a href="' + Path + '&page=' + (Page+1) + '">';
PageHtml+='后页</a>&nbsp;';
if (MaxPage!=Page) PageHtml+='<a href="' + Path + '&page=' + MaxPage + '">';
PageHtml+='尾页</a>&nbsp;';
if (Show!=null)
PageHtml+=
'      &nbsp;页次：<B>' + Page + '</B>/<B>' + MaxPage + '</B>页<B> &nbsp;' + MaxNum + '</B>条信息/页 &nbsp;共<B>' + AllNum + '</B>条信息' + 
'<!--	&nbsp;转到：<INPUT type=text size=2 name=page> <INPUT class="btn" type="submit" onsubmit="alert(\'ok\');return true;" value="Go"-->';
PageHtml+=
'    </TD>' +
'    <TD align=right width=12>' +
'      <P align=right><IMG height=33 src="http://www.kudo.cn/images/bg'+(3+bgimg_num)+'.gif" width=12 border=0></P></TD></TR></FORM></TBODY></TABLE>'

PageHtml=PageHtml.replace(/\?\&/ig,'?');
PageHtml=PageHtml.replace(/php\&/ig,'php?');
document.write(PageHtml);
}