/**
 *  MyNetworkTV Flash Module
 *
 *  Frame-writer for external web pages to embed the flash module
 *
**/

var mntvFlashFrameElement  = document.createElement('iframe');
    mntvFlashFrameElement.setAttribute('id', 'mntv-flash-module-frame');
    mntvFlashFrameElement.setAttribute('src', 'http://www.mynetworktv.com/modules/flash_module/');
    mntvFlashFrameElement.setAttribute('width', '300');
    mntvFlashFrameElement.setAttribute('height', '350');
    mntvFlashFrameElement.setAttribute('frameborder', '0');
    mntvFlashFrameElement.setAttribute('scrolling', 'no');

    mntvFlashFrameElement.frameBorder = '0';

document.getElementById('mntv-flash-module-script').parentNode.appendChild(mntvFlashFrameElement);
