function iframeResizePipe(clientUrl) {
     var height = document.body.scrollHeight;
     var pipe = document.getElementById('helpframe');
     if( pipe && clientUrl ) {
     	pipe.src = 'http://' + clientUrl + '/client/helper.html?height=' + height + '&cacheb='+Math.random();
     }
}

