﻿// Author: Qiu Bin
function reorderLayout(){
    var pageHeight = document.body.offsetHeight;
    var contentHeight = pageHeight-50-29-24-30;
    if (contentHeight < 0) contentHeight = 0;
    document.getElementById('PageContent').style.height = contentHeight+'px';
}      


