//
// WindowUtils
//
// Provides utility functions for dealing with popup windows.
//
// <script src='/.../WindowUtils.js'></script>
// ...
// <input type="button" value="Open" onClick="WindowUtils.openBareWindow('MyWindow', 300, 200);">
//

var undefined;

// "Constructor"

function WindowUtils()
{
}

// Open a bare window of the given size with the given name.
function WindowUtils_openBareWindow(name, w, h)
{
    return window.open('',name,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+w+',height='+h);
}
WindowUtils.openBareWindow = WindowUtils_openBareWindow;

// Open a bare window of the given size with the given name.
function WindowUtils_openBasicWindow(name, w, h)
{
    return window.open('',name,'toolbar=no,location=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width='+w+',height='+h);
}
WindowUtils.openBasicWindow = WindowUtils_openBasicWindow;
