     	var rowid=document.getElementsByTagName("input");

		
			document.getElementById("selAll").onclick= function()
			{
			  for (i=0;i<rowid.length;i++)
			  {
			  	if (rowid[i].type=="checkbox")
				{
					if(this.checked)
					{
						rowid[i].checked=true;
					    rowid[i].parentNode.parentNode.parentNode.style.backgroundColor='aliceblue';
					}
					else
					{
						rowid[i].checked=false;
					    rowid[i].parentNode.parentNode.parentNode.style.backgroundColor='';	
					}
				}

			  }
			  
			}
			
		function select(b,zhi)
		{
		 var a=document.getElementById(zhi);
         if (b.style.backgroundColor=='aliceblue')
         {
		 a.checked=false;
		 b.style.backgroundColor='';
         }
		 else
		 {
		 a.checked=true;
		 b.bgColor='';
		 b.style.backgroundColor='aliceblue'
		 }
		}
		function Over(b)
		{
		b.bgColor='#f5fbff';
		}

		function Out(b)
		{
		b.bgColor='#FFFFFF';
		}
	   
  //Õ¹¿ªÏÔÊ¾
  
  function viewdisplay(id){
	var bb=document.getElementById(id);
	if(bb.style.display=='')
	{
		bb.style.display='none';
	}
	else
	{
		bb.style.display='';
	}

}