<!--

//share js------------------------------------------------------//
function openwin(Url)
{
  msgwin=window.open(Url,"msg","left=0,top=0,width=550,height=350,resizable=yes,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no");
  msgwin.focus();
	return;
}
function openwin1(Url)
{
  msgwin=window.open(Url,"msg","left=0,top=0,width=700,height=500,resizable=yes,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no");
  msgwin.focus();
	return;
}

function makevisible(cur,which){
if (which==0)
cur.filters.alpha.opacity=100
else
cur.filters.alpha.opacity=40
}


function openwindow(url) {
   window.open(url,'new','scrollbars=yes,resizable=yes,width=500,height=500');
    }
function opennews(url) {
   window.open(url,'new','scrollbars=yes,resizable=yes,width=500,height=400');
    }
	
function openclub(url) {
   window.open(url,'club','resizable=no,scrollbars=yes,status=no,toolbar=no,menubar=no,location=no,width=500,height=400');
    }

function switchit(pid){ 
  obj=event.srcElement 
  if(obj.tagName!="TD")     //事件发生的对象不是单元格时退出 
  return  
  //index=obj.cellIndex    //单元格的在行中的索引值 
//遍历该行所有单元格，并设置className为item 
  for(var i=0;i<items.cells.length;i++) 
      items.cells[i].className="p_back2" 
//把事件发生的单元格className设为c_item 
  obj.className="p_back"  
//遍历content表格的所有tbody 
  for(i=0;i<pshow.length;i++) 
     pshow[i].style.display="none"   
//设置所有tbody为不可见 
//设置事件事件发生的单元格对应的tbody块可见 
  pshow[pid].style.display="inline"                  
  } 

//-->