function newWindow(url, wd, ht, scroll) {
	newWin = window.open(url, 'newWin', "width="+wd+",height="+ht+",scrollbars=yes,resizable="+scroll)
	newWin.focus()
}

function closeWindow() {
		window.close()
}
