//
// Open a window to display the given url with the given width and height
//
function openWindow(dest,W,H)
{
    attrib = "width=" + W + ",height=" + H + ",status=no,resizable=yes" +
        ",toolbar=yes,location=no,scrollbars=yes";
    newWindow = window.open(dest, 'newWin', attrib);
    if (newWindow.focus) {
        newWindow.focus();
    }
}
