function selectAll()
    {
       for(i=1;i<form1.elements.length;i++)
       {
          a=form1.elements[i];
	      if(a.name!='checkall')
	         a.checked=form1.checkall.checked;
       }
    }
    
    function TurnPage(strCatg,nTypeNo,nPageNo)
{
    self.location="List"+strCatg+nTypeNo+"P"+nPageNo+".html";
}

function TurnPageSearch(strUrl,nPageNo)
{
   self.location=strUrl + "PageNo=" + nPageNo;
}

function deleteSQL(strUrl,action)
{
  var str='是否要删除该信息';
  if(!confirm(str)) 
  {
    //self.location=strUrl;
  }
  else
  {
    self.location=strUrl+"&"+action;
  }
}

