﻿function setAmount(amount) {
    document.getElementById("amount").value = amount.value;
}

function enableField() {
    document.getElementById("otherAmount").disabled = false;
}

function disableField() {
    document.getElementById("otherAmount").disabled = true;
    document.getElementById("otherAmount").value = "";
}



$(function () {



    /* set bottom blocks */
    //alert($('div.template-left').height());
    var l_height = $('div.template-left').height();
    var r_height = $('div.template-right').height()

    var adj = l_height - r_height;
    $('div.bottom-block').css('margin-top', adj + 'px');

    /* set bottom button bar on all pages */
    var l_height = $('div#content-left').height();
    var r_height = $('div#content-right').height();
    var bottom = $('div#right-lower-frame').height();
    var main = $('div#content-main').height();
    var diff = l_height - r_height;
    var adjusted = (r_height - bottom) + diff;


    if (l_height > r_height) {
        $('div#content-main').css('height', adjusted + 'px');
    }
});
