function PopUp(URL, width, height){	this.sURL = URL;	this.bToolBar = 0;	this.bScrollBars = 0;	this.bLocation = 0;	this.bMenuBar = 0;	this.bResizable = 0;	this.nWidth = width;	this.nHeight = height;	this.nTop = 0;	this.nLeft = 0;	this.addToolBar = function()	{		this.bToolBar = 1;	}	this.addLocation= function()	{		this.bLocation = 1;	}	this.addMenuBar = function()	{		this.bMenuBar = 1;	}		this.makeResizable = function()	{		this.bResizable = 1;	}	this.addScrollBars = function()	{		this.bScrollBars = 1;	}	this.makePopUp = function()	{		var day = new Date();		var id = day.getTime();		eval("page" + id + " = window.open(URL, '"  + id +  "', 'toolbar=" + this.bToolBar + ", scrollbars=" + this.bScrollBars +  ", location=" + this.bLocation + ", statusbar=" + this.bStatusBar + ", menubar=" + this.bMenuBar + ", resizable=" + this.bResizable + ", width=" + this.nWidth + ", height=" + this.nHeight + ", left=" + this.nLeft + ", top=" + this.nTop + "');"); 	}}