function rt_showEdit(applicationPath, windowName, menuId, moduleId, height, width)
{
		var winEditRT = window.open(applicationPath+'/BackEnd.aspx?menuid='+menuId+'&moduleid='+moduleId+'&contenttype=html&rtemode=edit', windowName, 'height='+height+',width='+width+',resizable=yes');
}

function rt_close(win, previewWin) {
	if (previewWin!=null) previewWin.close();
	win.close();
}

