document.writeln("<script language=\"javascript\">");
document.writeln("var a=document.getElementById(\"right\")");
document.writeln("var b=document.getElementById(\"left\")");
document.writeln("var c=document.getElementById(\"right2\")");
document.writeln("var d=document.getElementById(\"left2\")");
document.writeln("if (a.scrollHeight<b.scrollHeight) ");
document.writeln("{");
document.writeln(" a.style.height=b.scrollHeight+\"px\";}");
document.writeln("else");
document.writeln("{");
document.writeln(" b.style.height=a.scrollHeight+\"px\";  }");
document.writeln("if (c.scrollHeight<d.scrollHeight) ");
document.writeln("{");
document.writeln(" c.style.height=d.scrollHeight+\"px\";}");
document.writeln("else");
document.writeln("{");
document.writeln(" d.style.height=c.scrollHeight+\"px\";  }");
document.writeln("<\/script>")