function fnDrugInfoView(cIdx,cLng) {
	for (var i=0;i<=cLng ;i++ ) {
		var obj = document.getElementById('DrugInfo'+i);
		if (i == cIdx) {
			obj.style.display = 'block';
		} else {
			obj.style.display = 'none';
		}
	}
}
function fnImgRef(cIdx,cLng) {
	for (var i=1;i<=cLng ;i++ ) {
		var obj = document.getElementById("tap.0"+ i);
		if (obj.id == cIdx) {
			obj.src = "http://image.mkhealth.co.kr/std/healthinfo/tap.0"+ i +".on.gif";
		} else {
			obj.src = "http://image.mkhealth.co.kr/std/healthinfo/tap.0"+ i +".off.gif";
		}
	}
}
function fnImgRef2(cIdx,cStart,cEnd) {
	for (var i=cStart;i<=cEnd ;i++ ) {
		var obj = document.getElementById("tap.0"+ i);
		if (obj.id == cIdx) {
			obj.src = "http://image.mkhealth.co.kr/std/healthinfo/tap.0"+ i +".on.gif";
		} else {
			obj.src = "http://image.mkhealth.co.kr/std/healthinfo/tap.0"+ i +".off.gif";
		}
	}
}


