// Quidnunc Components.
//
// Copyright 1999, 2000 Quidnunc All Rights Reserved.
//
// newwindow.js

function openNewWindow(sURL)
{
    var winNewWindow = window.open(sURL, "", "status=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,location=yes,width=750,height=550");

    if(!isInternetExplorer4())
    {
        winNewWindow.focus();
    }
}

function openNewWindow(sURL, sName, iWidth, iHeight)
{
    var winNewWindow = window.open(sURL, sName, "status=yes,toolbar=yes,menubar=yes,resizable=yes,scrollbars=yes,location=yes,width=" + iWidth + ",height=" + iHeight);

    if(!isInternetExplorer4())
    {
        winNewWindow.focus();
    }
}

function openBasicWindow(sURL)
{
    var winNewWindow = window.open(sURL, "", "status=no,toolbar=no,menubar=no,resizable=no,scrollbars=no,location=no,width=259,height=290");

    if(!isInternetExplorer4())
    {
        winNewWindow.focus();
    }
}

