
var url=window.location.href;
var x=url.split("id=")[1];
window.onload=function sm(){
if(x!=null){
 if(x<5){
 document.getElementById("zw"+1).style.display="block";
 }
  if(x<9&& x>4){
 document.getElementById("zw"+2).style.display="block";
 }
  if(x>8){
 document.getElementById("zw"+3).style.display="block";
 }
}

			

}
var thisNum;
function showMenu(str,id,num){
  for(var i=1; i<num+1; i++){
	 if(i==id)
	{
		document.getElementById(str+i).style.display="block";
	}else{
		document.getElementById(str+i).style.display="none";
	}
 }
}
//str id全面的字符 比如id="ab1" str就等于 ab