function hOpenWindow(name,width,height) {
    var width = (width==null) ? 1000 : width;
    var height = (height==null) ? 800 : height;
    var hWindow = window.open("about:blank", name, "width="+width+",height="+height+",left=100,top=200,resizeable=yes,scrollbars=yes,location=no");
    hWindow.focus();
    return hWindow;
}
