﻿function InlineArkena(strUrl)
{    
    vidFrame = document.getElementById('VideoFrame'); 
    loadFrame = document.getElementById('LoadingFrame');
    loadFrame.style.display = 'inline';
    vidFrame.style.display = 'none';
    vidFrame.src = strUrl;
       
    setTimeout('showVideo()', 3000);
    
    return false;
         
}

function showVideo()
{    
    vidFrame = document.getElementById('VideoFrame'); 
    loadFrame = document.getElementById('LoadingFrame');
    loadFrame.style.display = 'none';
    vidFrame.style.display = 'inline';
    
}

function DisplayArkena(strUrl)
{
    objWin = window.open(strUrl, "arkena", "width=680,height=500");
    objWin.focus();
}

function ShowAgendaDocument(strURL)
{
    window.open(strURL, "", "width=950,height=680,menubar=no,status=no,toolbar=no,scrollbars=yes,resizable=yes");
}

function MeetingView(strURL)
{
    window.open(strURL, "", "width=950,height=680,menubar=no,status=no,toolbar=no,scrollbars=yes,resizable=yes");
}

function ShowDocument(strURL)
{
    window.open(strURL, "", "width=950,height=680,menubar=yes,status=no,toolbar=yes,scrollbars=yes,resizable=yes");
}
