function open_window(page)
	{
		window.open(page, 'NewWin',
			"height=" + (window.screen.availHeight - 50) +
			", width=" + (window.screen.availWidth - 0) +
			", top=25, left=10, menubar=0, location=0, scrollbars=1, resizable=1, status=0");
	}
