
leftPos=0
topPos=0
if (screen){
	leftPos=screen.width-500
	topPos=screen.height-300
	}
function newWindow(term) {
	termWindow = window.open(term, 'termWin', 'width=350,height=170,scrollbars=yes,left='+leftPos+',top='+topPos+'')

termWindow.focus()

}


