
// This function is put here to block javascript errors that occur when the function
// resizeContainer fires prior to the div it is resizing being rendered.  This happens
// as a result of the infrigistics tabs implementation.
function blockError(){return true;}
window.onerror = blockError;

function resizeContainer(elementName, offset){
	try{
		//var dh = document.documentElement.offsetHeight;
		var dh = document.body.clientHeight;
		document.getElementById(elementName).style.height = dh - offset;
	}
	catch(e){
	}
}

