var browserCurrentPage; // = [IS subject.id]; // Index des aktuell angezeigten WBS
var browserPopup = null;

function popupBrowser( page, browser_version )
///////////////////////////////////////////////////////////////////////////////
{
    popupBrowser( page );
}

function popupBrowser( page )
///////////////////////////////////////////////////////////////////////////////
{
    height = 650;
    width = 600;

    // Browserfenster an den rechten Bildrand schieben
    left = screen.width-width-10;
    
    browserPopup = popupSingleton(
            browserPopup,
            'Browser',
            'height='+height+',width='+width+',screenX='+left+',screenY=0,left='+left+',top=0,locationbar=no,menubar=no,scrollbars=no,resizable=yes');

    browserPopup.location.href="/SK/browser_v300/browser.htm";
    
    browserCurrentPage = page;
    tempTimer = setTimeout("browserPopup.document.G.setCurrentKE(browserCurrentPage);",3000);
}



function setCurrentPage( page )
///////////////////////////////////////////////////////////////////////////////
{
    browserCurrentPage = page;
    if(browserPopup!=null) {
        if( !browserPopup.closed ) {
            tempTimer = setTimeout("browserPopup.document.G.setCurrentKE(browserCurrentPage);",300);
            // Browserfenster wieder nach vorne holen
            browserPopup.focus();
        }
    }
}
