// mlm.js

function mlm() {
  getURL('/mlm/mlmPoller.php', 'mlmQueueDiv');
  mlmTimer=setTimeout('mlm()',60000);
}

function setPageHeight() {
var pageDiv=getObjectId('pageDiv');
var columnOneDiv=getObjectId('columnOneDiv');
var columnTwoDiv=getObjectId('columnTwoDiv');
var websiteDevelopmentsDiv=getObjectId('websiteDevelopmentsDiv');
var pageHeight=getWindowHeight()-50;
var columnHeight=getWindowHeight()-100;
    pageDiv.style.height=pageHeight+'px';
    columnOneDiv.style.height=columnHeight+'px';
    columnTwoDiv.style.height=columnHeight+'px';
var petitionersDiv=getObjectId('petitionersDiv');
var websiteDevelopmentsDivHeight=columnHeight-370;
    if (websiteDevelopmentsDivHeight<100) websiteDevelopmentsDivHeight='0px';
    else websiteDevelopmentsDiv.style.height=websiteDevelopmentsDivHeight+'px';
var petitionersDivHeight=columnHeight-385;
    if (petitionersDivHeight<100) petitionersDivHeight='0px';
    else petitionersDiv.style.height=petitionersDivHeight+'px';
}


