 /**
 * This function must be available on the main outer page.
 * When called with a height it will update the size of the
 * iframe to match that height.
 */
function updateIFrame( height ) {
    var iframe = document.getElementById( 'myiframe' );
    iframe.setAttribute( 'height', height );
}
                                                                                      
