function NewWin(objpath, winwidth, winheight, scroll)
{
    objWindow = window.open(objpath,"win36_4",'scrollbars='+scroll+',toolbar=no, resizable=yes, width=' + winwidth + ',height=' + winheight);
	objWindow.focus();
	objWindow.resizeTo(winwidth, winheight);
}
