// JavaScript Document

function fixH(one,two) {
if (document.getElementById(one)) {
var lh=document.getElementById(one).offsetHeight;
var rh=document.getElementById(two).offsetHeight;
var nh = Math.max(lh, rh);
document.getElementById(one).style.height=nh+"px";
document.getElementById(two).style.height=nh+"px";
}
}

window.onload=function(){
fixH('leftNav','caseFile');
}


//Popup For Window with attributes
function openWin(URL,ID,WIDTH,HEIGHT,RESIZE,SCROLL) {
        var Win = window.open(URL,ID,'width='+WIDTH+',height='+HEIGHT+',resizable='+RESIZE+',scrollbars='+SCROLL+',menubar=no,toolbar=no,location=no,directories=no,status=no');
		Win.focus();
}