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

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


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