function NewWindow(url) {
            var hWnd = window.open(url,"print","left=450,top=30,width=795,height=800,resizable=no,scrollbars=yes");
            if (hWnd.focus != null) hWnd.focus();
}
function NewWindowSmall(url) {
            var hWnd = window.open(url,"edit","left=430,top=270,width=795,height=330,resizable=no,scrollbars=yes");
            if (hWnd.focus != null) hWnd.focus();
}


