function RunWin(url, width, height,title){
	url =  "tree_" + url + ".aspx?id=" + mainForm.id.value;
	url = "iframe.aspx?title=" + escape(title) + "&url=" + escape(url)
	window.showModalDialog(url,window,"dialogHeight: " + height + "px; dialogWidth: " + width + "px; center: yes; status:no; help:no; resizable: yes; scroll: no;")
}

function NewWindows(url, width, height,title){
	url = "iframe.aspx?title=" + escape(title) + "&url=" + escape(url)
	window.showModalDialog(url,window,"dialogHeight: " + height + "px; dialogWidth: " + width + "px; center: yes; status:no; help:no; resizable: yes; scroll: no;")
}

function NewWindows1(url, width, height,title){
	url = "manage/iframe.aspx?title=" + escape(title) + "&url=" + escape(url)
	window.showModalDialog(url,window,"dialogHeight: " + height + "px; dialogWidth: " + width + "px; center: yes; status:no; help:no; resizable: yes; scroll: no;")
}


function printWin(url, width, height){
	window.showModalDialog(url,window,"dialogHeight: " + height + "px; dialogWidth: " + width + "px; center: yes; status:no; help:no; resizable: yes; scroll: auto;")
}

