
/* newWindow opens child 350 by 350 - used for Study.htm on plan pages
*/

	function newWindow(studywin) {
		studyWindow = window.open(studywin, 'studyWin', 'width=350,height=350')
		studyWindow.focus()
	}

/* chdWindow opens child 350 by 350 - used for addsets.htm on plan pages
*/

	function chdWindow(chdwin) {
		chdWindow = window.open(chdwin, 'chdWin', 'width=350,height=350')
		chdWindow.focus()
	}

/* indWindow opens child window 420x350 - used for plans/index.htm from plans page
*/

	function indWindow(indwin) {
		indWindow = window.open(indwin, 'indWin', 'width=420,height=350')
		indWindow.focus()
	}

/* bigWindow opens full page - used for terms.htm from child window
*/

	function bigWindow(termswin) {
		termsWindow = window.open(termswin, 'termsWin')
		termsWindow.focus()
	}
