/**
 *  MyNetworkTV Tabbed Calendar
 *
 *  Frame-writer for external web pages to embed the tabbed calendar
 *
**/

var mntvSocialFrameElement  = document.createElement('iframe');
    mntvSocialFrameElement.setAttribute('id', 'mntv-social-feeds-frame');
    mntvSocialFrameElement.setAttribute('src', 'http://www.mynetworktv.com/modules/social_feeds/social_feeds.php');
    mntvSocialFrameElement.setAttribute('width', '300');
    mntvSocialFrameElement.setAttribute('height', '347');
    mntvSocialFrameElement.setAttribute('frameborder', '0');
    mntvSocialFrameElement.setAttribute('scrolling', 'no');

    mntvSocialFrameElement.frameBorder = '0';

document.getElementById('mntv-social-feeds-script').parentNode.appendChild(mntvSocialFrameElement);

