function ReplaceAll(strPath) {
	try {
		if(strPath.match('/') != null) {
			strReturn = strPath.replace('/', '.');	
			ReplaceAll(strReturn); 
		}
			return strReturn;
	} catch(e) {}
}

function ProcessEditor(Params) {
	window.showModalDialog(strComponentPath + "LoadLinkCatalogEditor.aspx?" + Params, null, "dialogHeight:400px;dialogWidth:680px;status:no;help:no;scroll:no;");
	//window.open(strComponentPath + "LinkCatalogEditor.aspx?" + Params);
}