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

