//
// (c) 2008 webActive
//

function resizeWindow()
{

	var windowHeight = document.documentElement ? document.documentElement.clientHeight : window.innerHeight;
	var windowWidth  = document.documentElement ? document.documentElement.clientWidth : window.innerWidth;
    var contentHeight = $('ContentsContainer').offsetHeight;
    var footerHeight = $('Footer').offsetHeight;
    var headerHeight = $('Header').offsetHeight;
    var nieruchomosciHeight = $('Nieruchomosci').offsetHeight;
	var biura1Width = $('BiuraTresc').offsetWidth;
	var biura2Width = $('BiuroDoWynajecia').offsetWidth;
	var nieruchomosciWidth = $('Nieruchomosci').offsetWidth;

	var Xheight = Math.max(windowHeight, (nieruchomosciHeight + headerHeight + footerHeight));
	$('ContentsContainer').style.height = Xheight + 'px';
    $('Nieruchomosci').style.height = Xheight - (headerHeight + footerHeight + 63) + 'px';
    $('BiuraTresc').style.height = Xheight - (headerHeight + footerHeight + 63) + 'px';
    $('Nieruchomosci').style.width = Math.max((biura1Width + biura2Width), windowWidth) + 'px';

    RecalculateFooter();

}

function RecalculateFooter()
{
    var marginLeftMin = 100;
    var marginLeftMax = 200;
    var FooterMarginLeft = 0;

    flashWidth = 1215;
    
    FooterMarginLeft = (flashWidth - 900) / 2;
    FooterMarginLeft = Math.max(marginLeftMin, Math.min(marginLeftMax, FooterMarginLeft));
    
    headerHouse_x = 410 + FooterMarginLeft;
    
    $('FooterSpacer').style.width = FooterMarginLeft + 'px';
    $('FooterContent').style.width = headerHouse_x + 'px';
}
