// JavaScript Document
var idxBox1 = document.getElementById("idxBox1").clientHeight;
if(idxBox1 > document.getElementById("idxBox2").clientHeight) {
	document.getElementById("idxBox2").style.height = idxBox1-11+'px';
}

