﻿function PopUpWindow(sURL, iTool, iLoc, iStatus, iMenu, iScroll, iResize, iWidth, iHeight, iTop, iLeft) {
  day = new Date();
  id = day.getTime();
  features =
	'toolbar=' + iTool +
	',scrollbars=' + iScroll +
	',location=' + iLoc +
	',statusbar=' + iStatus +
	',menubar=' + iMenu +
	',resizable=' + iResize +
	',width=' + iWidth +
	',height=' + iHeight +
	',top=' + iTop +
	',left=' + iLeft
  eval("page" + id + " = window.open(sURL, '" + id + "', '" + features + "');");
}
