function showWindow(href)
{
    var nHeight = window.screen.availHeight - 31;
    var nWidth  = window.screen.availWidth  - 12; 
    var nTop    = 0;
    var nLeft   = 0;
    if (nHeight > 600)
    {
	nTop    = (nHeight - 600) >> 2;
	nHeight = 600;
    }
    if (nWidth > 800)
    {
	nLeft   = (nWidth  - 800) >> 2;
	nWidth  = 800;
    }
    var sFeatures = "height=" + nHeight + ",width=" + nWidth + ",top=" + nTop + ",left=" + nLeft;

    // URI of Bureau Web Server
    var sHref = "" + href;
    return window.open(sHref,gLanguage+"_bureau_win","resizable=yes,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no," + sFeatures);
}

function showHelpWindow(helpContext,language)
{
    var href = "../help/help"+ helpContext.toString() + "_" + language.toString() +".html";
    window.open(href,"bureau_help","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,fullscreen=no,channelmode=no,width=500,height=350,top=10,left=10");
}
