﻿function LiveWindow(nurl, nwidth, nheight, sbar, mbar, tbar)
{
    wndLiveWindow=window.open(nurl ,"wndLiveWindow","width=" + nwidth + ",height=" + nheight+ ",toolbar=" + tbar + ",location=0,directories=0,status=0,scrollbars=" + sbar + ",menubar=" + mbar + ",resizable=1");
    wndLiveWindow.focus();
}

function OpenWindow(nurl, nwidth, nheight, sbar, mbar, tbar)
{
    wndWindow=window.open(nurl ,"wndWindow","width=" + nwidth + ",height=" + nheight+ ",toolbar=" + tbar + ",location=0,directories=0,status=0,scrollbars=" + sbar + ",menubar=" + mbar + ",resizable=1");
    wndWindow.focus();
}

function OpenNewWindow(nurl, nwidth, nheight, sbar, mbar, tbar)
{
    wndNewWindow=window.open(nurl ,"wndNewWindow","width=" + nwidth + ",height=" + nheight+ ",toolbar=" + tbar + ",location=0,directories=0,status=0,scrollbars=" + sbar + ",menubar=" + mbar + ",resizable=1");
    wndNewWindow.focus();
}

function OpenViewlet(nurl, nwidth, nheight, sbar, mbar, tbar)
{
    wndViewlet=window.open(nurl ,"wndViewlet","width=" + nwidth + ",height=" + nheight+ ",toolbar=" + tbar + ",location=0,directories=0,status=0,scrollbars=" + sbar + ",menubar=" + mbar + ",resizable=1");
    wndViewlet.focus();
}

function ShowExport(pUrl)
{
    htmlWindow = window.open(pUrl);
    return false;
}