
function updateHeight() {
	
	if (typeof(_iframeHost) == 'undefined') {
		return;
	}
	
	var foreignHost = _iframeHost;
	
    jQuery.postMessage( {
        new_height: jQuery('body').outerHeight(true)
        },
        foreignHost,
        window.parent
    );
}