/**
 * deploys the flash communicationframe
 */
var flashFrameCtrl = {
    isInitialized:false,
    init: function() {
        if (this.isInitialized) {
            return;
        }
        var iframeHtml = '<iframe id="flash-communication-frame" name="flash-communication-frame" width="0" height="0" style="width:0px;height:0px;border:none;overflow:hidden;border:0px;"';
        iframeHtml += ' src="images/empty.gif" ';
        if (jQuery.browser.msie) {
            iframeHtml+= ' border="0" frameborder="0" ';
        }
        iframeHtml += '>&nbsp;</iframe>';
        jQuery('body').append(iframeHtml);
        this.isInitialized = true;
    }
}

jQuery(document).ready(function(){
    flashFrameCtrl.init();
});
