function borders_fix()
{
if(navigator.appName!="Microsoft Internet Explorer")
{
var yh=$("#content").css("height");
/*
$("#ll").css("height",yh);
$("#lr").css("height",yh);
*/
}else
{
var yh=document.getElementById("content").offsetHeight;
/*document.getElementById("ll").style.height=yh;
document.getElementById("lr").style.height=yh;
*/
}
}
function boxes_fix()
{
var b,a;b=0;
if(navigator.appName!="Microsoft Internet Explorer")
{$(".box").each(function(c){b=Math.max(b,parseInt($(this).css("height"),10))});a=b+"px";$(".box").each(function(c){$(this).css("height",a)})}else{$(".box").each(function(c){b=Math.max(b,parseInt(this.offsetHeight,10))});a=b;$(".box").each(function(c){this.style.height=a})}}function times_ref(){boxes_fix();setInterval(borders_fix,300)};
