// JavaScript Document
function showXinPinBox(num){
	for(var i=0;i<2;i++){
		document.getElementById("XinPinBiaoQian"+i).className="HuiDuBiaoQian";
		document.getElementById("XinPinBiaoQian"+i).style.cursor="hand";
		document.getElementById("XinPinContent"+i).style.display="none";
	}
	document.getElementById("XinPinBiaoQian"+num).className="HuiDuBiaoQian_b";
	document.getElementById("XinPinContent"+num).style.display="";
}

function showAC(num){
	for(var i=0;i<2;i++){
		document.getElementById("A"+i).className="BiaoQian";
		document.getElementById("A"+i).style.cursor="hand";
		document.getElementById("AC"+i).style.display="none";
	}
	document.getElementById("A"+num).className="BiaoQian_b";
	document.getElementById("AC"+num).style.display="";
}
function showBC(num){
	for(var i=0;i<2;i++){
		document.getElementById("B"+i).className="BiaoQian";
		document.getElementById("B"+i).style.cursor="hand";
		document.getElementById("BC"+i).style.display="none";
	}
	document.getElementById("B"+num).className="BiaoQian_b";
	document.getElementById("BC"+num).style.display="";
}
function showBrC(num){
	for(var i=0;i<2;i++){
		document.getElementById("Br"+i).className="BiaoQian";
		document.getElementById("Br"+i).style.cursor="hand";
		document.getElementById("BrC"+i).style.display="none";
	}
	document.getElementById("Br"+num).className="BiaoQian_b";
	document.getElementById("BrC"+num).style.display="";
}
function showCC(num){
	for(var i=0;i<2;i++){
		document.getElementById("C"+i).className="BiaoQian";
		document.getElementById("C"+i).style.cursor="hand";
		document.getElementById("CC"+i).style.display="none";
	}
	document.getElementById("C"+num).className="BiaoQian_b";
	document.getElementById("CC"+num).style.display="";
}
function showCrC(num){
	for(var i=0;i<2;i++){
		document.getElementById("Cr"+i).className="BiaoQian";
		document.getElementById("Cr"+i).style.cursor="hand";
		document.getElementById("CrC"+i).style.display="none";
	}
	document.getElementById("Cr"+num).className="BiaoQian_b";
	document.getElementById("CrC"+num).style.display="";
}
function showDC(num){
	for(var i=0;i<2;i++){
		document.getElementById("D"+i).className="BiaoQian";
		document.getElementById("D"+i).style.cursor="hand";
		document.getElementById("DC"+i).style.display="none";
	}
	document.getElementById("D"+num).className="BiaoQian_b";
	document.getElementById("DC"+num).style.display="";
}
function showEC(num){
	for(var i=0;i<5;i++){
		document.getElementById("E"+i).className="BiaoQian";
		document.getElementById("E"+i).style.cursor="hand";
		document.getElementById("EC"+i).style.display="none";
	}
	document.getElementById("E"+num).className="BiaoQian_b";
	document.getElementById("EC"+num).style.display="";
}
function showFC(num){
	for(var i=0;i<8;i++){
		document.getElementById("F"+i).className="BiaoQian";
		document.getElementById("F"+i).style.cursor="hand";
		document.getElementById("FC"+i).style.display="none";
	}
	document.getElementById("F"+num).className="BiaoQian_b";
	document.getElementById("FC"+num).style.display="";
}

