function ViewPage(iPageIndex)
{
	var pages=document.getElementById("page");
	pages.value = iPageIndex;
	document.pagenext.submit();
}
function save_cookie(name,value)
{
var Days = 1; //定义过期时间 单位：天
var exp  = new Date();
exp.setTime(exp.getTime() + Days*24*60*60*1000);
document.cookie = name + "="+ escape (value) + ";expires=" + exp.toGMTString()+";path=/;";
}
function Setmode(cookiesvalue)
{
	save_cookie("setrencai",cookiesvalue);
	window.location.reload(true);
}
function CheckAll2()
  {
  for (var i=0;i<document.theForm.elements.length;i++)
    {
    var e = document.theForm.elements[i];
    if (e.name != 'chkall2')
       e.checked = document.theForm.chkall2.checked;	   
    }
  }
function CheckAll3()
  {
  if (document.theForm.chkall2.checked==true){
  document.theForm.chkall2.checked=false;
  } else {
  document.theForm.chkall2.checked=true;
  }
  for (var i=0;i<document.theForm.elements.length;i++)
    {
    var e = document.theForm.elements[i];
    if (e.name != 'chkall2')
       e.checked = document.theForm.chkall2.checked;	   
    }
  } 
function showoperatealert(id)
{		
	if (id==1){
		document.theForm.target='_self';
		document.theForm.action="/scjianli.asp";
		document.theForm.submit();
	}
	if (id==2){
		document.theForm.target='_self';
		document.theForm.action="/msjianli.asp";
		document.theForm.submit();
	}
}
  
