Thank You For Joining Us

window.addEventListener(“message”, receiveMessage, false);
function receiveMessage(event){
if (event.origin ==”https://ifbta.member365.com”){
var iFrameID = document.getElementById(‘ampWebFormFrame64f86c6e20dc15fd16c45663c8620aa98f4e6be6′);
if(iFrameID){
var newHeight = (event.data+50)+’px’;
var baseStyle = ‘background-color: transparent; overflow: auto; width:100%; border:0;’;
var newStyle = baseStyle+’height:’+newHeight+’; min-height: ‘+newHeight+’;’;
iFrameID.setAttribute(‘style’,newStyle);
window.scrollTo(0,0);
}
} else {
return;
}
} // end receiveMessage handler function