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

function newWindow2(popup) {popupWindow2 = window.open(popup, "popupWin", "width=800px,height=600px,resizable=yes,scrollbars=yes,status=yes")popupWindow2.focus()}function closeWindow() {		if (newWindow && !newWindow.closed) {			newWindow.close()		}	}