function newWindow(popup) {popupWindow = window.open(popup, "popupWin", "width=800px,height=700px,resizable=yes,scrollbars=yes,status=yes")popupWindow.focus()}


function closeWindow() {		if (newWindow && !newWindow.closed) {			newWindow.close()		}	}