function OpenSelectDialog(paramTable, paramKey, paramValue)
{
	
		var height=500;
		var width=700;
		var resizable="no";
		var status="no";
		var toolbar="no";
		var menubar="no";
		var location="no";
		var scrollbars="yes";
		
		sFeatures="height="+height+", width="+width+", status="+status+", toolbar="+toolbar+", menubar="+menubar+", location="+location+", resizable="+resizable+", scrollbars="+scrollbars;

		
		//var imgSrc = window.showModalDialog("DesktopModules/EditorTools/AddImageDialog.aspx?mid=<%=this.ModuleId%>","", sFeatures);
		window.open("DesktopModules/SelectDialogs/SelectDialog.aspx?paramTable="+paramTable+"&paramKey="+paramKey+"&paramValue="+paramValue, null, sFeatures);
		//window.location.reload(true);

}

function OpenPropertiesDlg(paramModuleId)
{
	
		var height=500;
		var width=700;
		var resizable="no";
		var status="no";
		var toolbar="no";
		var menubar="no";
		var location="no";
		var scrollbars="yes";
		
		sFeatures="height="+height+", width="+width+", status="+status+", toolbar="+toolbar+", menubar="+menubar+", location="+location+", resizable="+resizable+", scrollbars="+scrollbars;

		
		//var imgSrc = window.showModalDialog("DesktopModules/EditorTools/AddImageDialog.aspx?mid=<%=this.ModuleId%>","", sFeatures);
		window.open("DesktopModules/PropertiesDlg.aspx?mid="+paramModuleId, null, sFeatures);
		//window.location.reload(true);
}
