$package("com.qn.dlg");

com.qn.dlg.UploadDlg = function (){
}

com.qn.dlg.UploadDlg.prototype = new js.ui.BaseWindow();

com.qn.dlg.UploadDlg.prototype.file = null;

com.qn.dlg.UploadDlg.prototype.extendUI = function (){
	var __this = this;
	this.setTitle(props("File Upload"));
	var extui = this.getDomNode("com.qn.dlg.UrlDlg");
	this.container.appendChild(extui);
	this.iframe = extui.getElementsByTagName("iframe")[0];
	this.ui.style.width = "700px";
	this.ui.style.height = "420px";
	this.setResizeable(false);
	this.setMoveable(false);
}

com.qn.dlg.UploadDlg.prototype.open = function (){
	this.iframe.src = "/view?module=upload&action=uploadDlg";
}

com.qn.dlg.UploadDlg.prototype.openUrl = function (url){
	this.iframe.src = url;
}

