﻿//PopUp Window.

function Popup(url, wId, xSize, ySize, xOffset, yOffset, location, resizable, menuBar, scrollBars, statusBar, toolBar) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(url, '" + id + "', 'toolbar = " + toolBar + ", scrollbars = " + scrollBars + ", location = " + location + ", statusbar = " + statusBar + ", menubar = " + menuBar + ", resizable = " + resizable + ", width = " + xSize + ", height = " + ySize + ", left = " + xOffset + ", top = " + yOffset + "');");
}
