function OpenNewWindow(Name, URL, width, height, scroll)
	{
		var wndopt = "width="+width+",height="+height+",scrollbars="+scroll+",top=10,left=10,menubar=no,resizable=no";
		NewWin=window.open(URL, Name, wndopt);
		NewWin.focus();
	}

