function ModalPopUp(ArgumentString) {	this._popUpWindow = new PopUpWindow(); this._popUpWindow.SetProperties(ArgumentString+'&modal=true'); this._popUpWindow.SetCloseable(false); this._popUpWindow.AutoCenter("true");	 }
ModalPopUp.prototype._popUpWindow = null;
ModalPopUp.prototype.Toggle = function() { this._popUpWindow.Toggle();		 }
ModalPopUp.prototype.Close = function() { this._popUpWindow.Hide(); }
ModalPopUp.prototype.SetContent =  function(Content) { this._popUpWindow.SetContent(Content); }
ModalPopUp.prototype.SetURL = function(URL) {  this._popUpWindow.SetURL(URL);  }