function newWindow(winSrc, winName, w, h, resizable, scroll) {
	winprops = 'toolbar=no,status=no,scrollbars='+scroll+',resizable='+resizable+',height='+h+',width='+w+',top=0,left=0';
	win = window.open(winSrc, winName, winprops)
	win.window.focus();
}