function Popup(wPage,wID,wWidth,wHeight,wScrollbars,wLocation,wToolbar,wStatus,wResizable) {
	if (!wID) { wID = "Popup" }
	if (!wWidth) { wWidth = 400 }
	if (!wHeight) { wHeight = 260 }
	if (!wScrollbars) { wScrollbars = "yes" }
	if (!wLocation) { wLocation = "no" }
	if (!wToolbar) { wToolbar = "no" }
	if (!wStatus) { wStatus = "no" }
	if (!wResizable) { wResizable = "yes" }
	popupWindow = window.open(wPage,wID,"width=" + wWidth + ",height=" + wHeight + ",scrollbars=" + wScrollbars + ",location=" + wLocation + ",toolbar=" + wToolbar + ",status=" + wStatus + ",resizable=" + wResizable)
	if (window.focus) { popupWindow.focus() }
}