﻿function NewWin(path,windowName,height,width){try{height=isNaN(height)?400:height;width=isNaN(width)?400:width;var L=Math.ceil((window.screen.width-width)-150),T=Math.ceil(window.screen.height-(window.screen.height-50)),newWindow=window.open(path,windowName,"fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width="+width+",height="+height);if(newWindow!=null)newWindow.moveTo(Math.ceil(L),Math.ceil(T));}catch(e){ErrorHandler("NewWin()",e);};};
