
   if ( !!window.f2IframeIntegration ) {

      $.cookie( "xss_child_domain", document.location.href, {
         path : '/',
         domain  : f2IframeIntegration.parentDomain
      });

   }

   function notifyParent() {
      if( !!window.f2IframeIntegration ) {
         var response = {
            //Height
            height : $('body').outerHeight(true),
            // Tab
            tab : f2IframeIntegration.parentTab
         };

         $.postMessage(response, $.cookie("xss_parent_domain"), parent);
      }
   };

   $( document ).ready( function () {
      F2.EventManager.publish( "PageHeightChanged" );
   });
   $(window).load(function () {
      F2.EventManager.publish( "PageHeightChanged" );
   });


