// JavaScript Document

//点击"[第一页]"时响应：
function PageFirst()
{ 
document.MyForm.Page.selectedIndex=0;
document.MyForm.Page.onchange();
}
//点击"[上一页]"时响应：
function PagePrior()
{ 
document.MyForm.Page.selectedIndex--;
document.MyForm.Page.onchange();
}
//点击"[下一页]"时响应：
function PageNext()
{ 
document.MyForm.Page.selectedIndex++;
document.MyForm.Page.onchange(); 
}
//点击"[最后一页]"时响应：
function PageLast()
{ 
document.MyForm.Page.selectedIndex=document.MyForm.Page.length-1;
document.MyForm.Page.onchange();
}
//选择"第？页"时响应：
function PageCurrent()
{ //ldcx.asp是本程序的文件名
document.MyForm.action='main.asp?Page='+(document.MyForm.Page.selectedIndex+1);
document.MyForm.submit();
} 

