function MM_openBrWindow(theURL,winName,features)
{ //v2.0
	newWindow = window.open(theURL,winName,features);
}

function getDocHeight()
{
	var D = document;
	return Math.max(
		Math.max(D.body.scrollHeight, D.documentElement.scrollHeight),
		Math.max(D.body.offsetHeight, D.documentElement.offsetHeight),
		Math.max(D.body.clientHeight, D.documentElement.clientHeight)
	);
}

function resizeIndexPage()
{
    $('#tbl_main').css('height', $(document).height()-20);
}

var resizeTimer = null;
function add_event_resizing_index_page()
{


	$(window).bind('resize', function() {
        resizeIndexPage();
	});

	resizeIndexPage();
}

