function match_height(id,to) {
	
	var adjust = document.getElementById(id);
	var match = document.getElementById(to);

	if(adjust==null || match==null){
		return;
		}
	
	
	if(adjust.style.height > match.style.height){
		adjust.style.height = match.clientHeight-38+"px";
		}
	else{
		match.style.height = adjust.clientHeight-38+"px";
		}
	
	//var both = document.getElementById('contents');
	//both.style.height = match.clientHeight-38+"px";
	//adjust.style.height = match.clientHeight-38+"px";
	//adjust.style.height = adjust.clientHeight-38+"px"

}
