// JavaScript Document

window.onload=window.onresize=function(){
if(document.getElementById("leftbox").clientHeight<document.getElementById("rigbox").clientHeight){
document.getElementById("leftbox").style.height=document.getElementById("rigbox").offsetHeight+"px";
}
else{
document.getElementById("rigbox").style.height=document.getElementById("leftbox").offsetHeight+"px";
}
}

