﻿// JScript File
function fixsizes()
{
    pn1=document.getElementById("QuickReservation");
    pn2=document.getElementById("content");
   // pn3=document.getElementById("columns_aside_div");
    var newHeight;
    newHeight=FindMax(pn1.clientHeight,pn2.clientHeight);
//    alert(newHeight);
    pn1.style.height=newHeight+"px";
    pn2.style.height=newHeight+"px";
   // pn3.style.height=newHeight+"px";

}

function FindMax(a,b){
    var ret;
    ret=a;
    if (b>ret)
        ret=b;
    return ret;  
}