﻿function SetTestimonialsHeight() 
{
    setTimeout("Setheight()", 600);
}

function Setheight()
{
    var LeftDiv = document.getElementById("leftDiv");
    var RightDiv = document.getElementById("rightDiv");


    if (LeftDiv.offsetHeight < RightDiv.offsetHeight) {
        LeftDiv.style.height = RightDiv.offsetHeight + "px";
    }
    else {
        RightDiv.style.height = LeftDiv.offsetHeight + "px";
    }  
}


function OpenLegalWindow()
{
    window.open("LicenseAgreement.aspx", "Legal", "height=800,width=900,left=100,top=100,directories=no,location=no,menubar=no,toolbar=no,resizable=yes,status=no,scrollbars=yes");
}

function OpenLegalWindowFromLogin() {
    window.open("../LicenseAgreement.aspx", "Legal", "height=800,width=900,left=100,top=100,directories=no,location=no,menubar=no,toolbar=no,resizable=yes,status=no,scrollbars=yes");
}

