function showRank(elm,num,total) {
			showTab(elm,num,total) ;
			showSub(elm,num,total) ;
			//showImage(num) ;
			document.body.focus();
		}
				function showTab(elm,num,total) {
			for(i=1;i<=total;i++) {
				document.getElementById(elm+"_"+i).className = "ys_2" ;
			}
			document.getElementById(elm+"_"+num).className = "ys_1" ;
		}
		function showSub(elm,num,total) {
			for (i=1;i<=total;i++) {
				document.getElementById(elm+"_sub"+i).style.display = "none" ;
			}
			document.getElementById(elm+"_sub"+num).style.display = "block" ;
		}
