summaryrefslogtreecommitdiff
path: root/www/vtiger
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-09-23 15:10:00 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-09-23 15:10:00 +0000
commit7ac153fc255c61d2fc533fef94b419f6f6ec4b88 (patch)
treee611a86ecdb7b51bd7a92d4714ff444caaf782b0 /www/vtiger
parent- Update to 3.3.3 (diff)
- Update to 5.0.3
- Pass maintainership to submitter Submitted by: Aron Schlesinger (as@bsdgroup.de) (via irc)
Notes
Notes: svn path=/head/; revision=199989
Diffstat (limited to 'www/vtiger')
-rw-r--r--www/vtiger/Makefile114
-rw-r--r--www/vtiger/distinfo9
-rw-r--r--www/vtiger/files/pkg-message.in21
-rw-r--r--www/vtiger/pkg-descr12
-rw-r--r--www/vtiger/pkg-plist7440
5 files changed, 3921 insertions, 3675 deletions
diff --git a/www/vtiger/Makefile b/www/vtiger/Makefile
index 707c01202b26..4824b25859da 100644
--- a/www/vtiger/Makefile
+++ b/www/vtiger/Makefile
@@ -6,35 +6,115 @@
#
PORTNAME= vtiger
-DISTVERSION= 5.0.2
-PORTREVISION= 2
+PORTVERSION= 5.0.3
CATEGORIES= www
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
+MASTER_SITES= SF
MASTER_SITE_SUBDIR= vtigercrm
-DISTNAME= vtigercrm-${DISTVERSION}
+DISTFILES= ${PORTNAME}crm-${DISTVERSION}.tar.gz \
+ ${PORTNAME}CRM-${DISTVERSION}-PHP5.2-Patch1.tar.gz
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Vtiger CRM is open source Customer Relationship Management (CRM) software
+MAINTAINER= as@bsdgroup.de
+COMMENT= Vtiger CRM is open source Customer Relationship Management software
-USE_PHP= mysql gd imap session pcre xml
-IGNORE_WITH_PHP=4
NO_BUILD= yes
SUB_FILES= pkg-message
-PKGMESSAGE= ${WRKDIR}/pkg-message
-USE_MYSQL= yes
-WANT_MYSQL_VER= 50
WRKSRC= ${WRKDIR}/vtigercrm
-post-extract:
- ${FIND} ${WRKSRC} -name .svn -delete
+OPTIONS= MYSQLSERVER "Use MySQL-Server on localhost" OFF
+
+.include <bsd.port.pre.mk>
+
+USE_PHP= mysql gd imap session pcre xml
+WANT_PHP_WEB= YES
+IGNORE_WITH_PHP= 4
+IGNORE_WITH_MYSQL= 323 40
+
+CONFLICTS= vtiger-4.*
+
+.if !defined(WITHOUT_MYSQLSERVER)
+RUN_DEPENDS+= ${LOCALBASE}/libexec/mysqld:${PORTSDIR}/databases/mysql${MYSQL_VER}-server
+.endif
+
+.if !defined(NOPORTDOCS)
+PORTDOCS= Release_Notes.html DEPENDENCIES.txt README.txt
+.endif
+
+CONFIGS= config.db.php config.inc.php config.php config.template.php
+DIRS= themes modules include Image cron log4php adodb Smarty \
+ license test jscalendar schema cache data install database \
+ logs user_privileges soap class_http storage class_http_dir
+PATCHDIRS= data include include/utils modules/Migration modules/Migration/DBChanges
+WRITEABLES= cache storage install tabdata.php parent_tabdata.php \
+ install.php user_privileges Smarty/cache Smarty/templates_c \
+ modules/Emails/templates/ test/wordtemplatedownload test/product/ \
+ test/user test/contact test/logo logs modules/Webmails/tmp
+
+do-patch:
+.for DIR in ${PATCHDIRS}
+ @${INSTALL_DATA} -v ${WRKDIR}/${DIR}/*.php ${WRKSRC}/${DIR}
+.endfor
do-install:
- ${MKDIR} ${WWWDIR}
- ${CP} -R ${WRKSRC}/* ${WWWDIR}
- ${CHOWN} -R ${WWWOWN}:${WWWGRP} ${WWWDIR}
+.for DIR in ${DIRS}
+ ${MKDIR} ${WWWDIR}/${DIR}
+ ( cd ${WRKSRC} && ${COPYTREE_SHARE} ${DIR} ${WWWDIR} )
+.endfor
+ @( ${FIND} ${WRKSRC} -type f -maxdepth 1 \( -name \*.php -or -name \*.properties \
+ -or -name Copyright.txt \) -and -not -name config\* ; ${ECHO} ${WWWDIR} ) \
+ | ${XARGS} ${INSTALL_DATA} -v
+.for FILE in ${CONFIGS}
+ ${INSTALL_DATA} ${WRKSRC}/${FILE} ${WWWDIR}/${FILE}.sample
+.endfor
+.for FILE in ${WRITEABLES}
+ @${CHOWN} -R ${WWWOWN} ${WWWDIR}/${FILE}
+ @${CHMOD} -R u+w ${WWWDIR}/${FILE}
+.endfor
+ @( cd ${WWWDIR} && ${CHMOD} u+w install.php tabdata.php parent_tabdata.php )
post-install:
+.for FILE in ${CONFIGS}
+. if !exists(${WWWDIR}/${FILE})
+ ${INSTALL_DATA} ${WWWDIR}/${FILE}.sample ${WWWDIR}/${FILE}
+ @${CHOWN} ${WWWOWN} ${WWWDIR}/${FILE}
+ @${CHMOD} u+w ${WWWDIR}/${FILE}
+. endif
+.endfor
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+. for FILE in ${PORTDOCS}
+ ${INSTALL_DATA} ${WRKSRC}/${FILE} ${DOCSDIR}
+. endfor
+.endif
@${CAT} ${PKGMESSAGE}
-.include <bsd.port.mk>
+create-plist:
+ @${FIND} -s ${WRKSRC} -type f -mindepth 2 \
+ | ${SED} -e 's,^${WRKSRC},%%WWWDIR%%,' > ${PLIST}
+ @${FIND} -s ${WRKSRC} -type f \( -maxdepth 1 \( -name \*.php -or -name \*.properties \
+ -or -name Copyright.txt \) -and -not -name config\* \) \
+ | ${SED} -e 's,^${WRKSRC},%%WWWDIR%%,' >> ${PLIST}
+.for FILE in ${CONFIGS}
+ @${ECHO_CMD} '@unexec if cmp -s %D/%%WWWDIR%%/${FILE}.sample %D/%%WWWDIR%%/${FILE}; \
+ then ${RM} -f %D/%%WWWDIR%%/${FILE}; fi' >> ${PLIST}
+.endfor
+ @${FIND} -s ${WRKSRC} -type f -maxdepth 1 -name config\* \
+ | ${SED} -e 's,^${WRKSRC},%%WWWDIR%%,' -e 's,$$,.sample,' >> ${PLIST}
+.for FILE in ${CONFIGS}
+ @${ECHO_CMD} '@exec if [ ! -f %D/%%WWWDIR%%/${FILE} ]; then \
+ ${INSTALL_DATA} %D/%%WWWDIR%%/${FILE}.sample %D/%%WWWDIR%%/${FILE}; \
+ ${CHOWN} ${WWWOWN} %D/%%WWWDIR%%/${FILE}; \
+ ${CHMOD} u+w %D/%%WWWDIR%%/${FILE}; fi' >> ${PLIST}
+.endfor
+ @${ECHO_CMD} '@exec (cd %D/%%WWWDIR%% && \
+ ${CHMOD} u+w install.php tabdata.php parent_tabdata.php )' >> ${PLIST}
+ @${FIND} ${WRKSRC} -type d -empty \
+ | ${SED} -e 's,^${WRKSRC},@exec ${MKDIR} %D/%%WWWDIR%%,' >> ${PLIST}
+.for FILE in ${WRITEABLES}
+ @${ECHO_CMD} '@exec ${CHOWN} -R ${WWWOWN} %D/%%WWWDIR%%/${FILE}; \
+ ${CHMOD} -R u+w %D/%%WWWDIR%%/${FILE}' >> ${PLIST}
+.endfor
+ @${FIND} -ds ${WRKSRC} -type d \
+ | ${SED} -e 's,^${WRKSRC},@dirrm %%WWWDIR%%,' >> ${PLIST}
+
+.include <bsd.port.post.mk>
diff --git a/www/vtiger/distinfo b/www/vtiger/distinfo
index 4c788c69f35b..4a4ba4bf00fc 100644
--- a/www/vtiger/distinfo
+++ b/www/vtiger/distinfo
@@ -1,3 +1,6 @@
-MD5 (vtigercrm-5.0.2.tar.gz) = f93a7fa11869c836d5af30ebeb5ab722
-SHA256 (vtigercrm-5.0.2.tar.gz) = 1758cfdfc8b6141ee4023b00ad4b99135ceb8f78489fd0f316310866000b0cba
-SIZE (vtigercrm-5.0.2.tar.gz) = 6470682
+MD5 (vtigercrm-5.0.3.tar.gz) = 214166468d205e3ea7aef5356e07ab3d
+SHA256 (vtigercrm-5.0.3.tar.gz) = ad082eb0c52705aecba24fc658cd69363f3c495d78ae8d6b6f3e56a3fa81f3a8
+SIZE (vtigercrm-5.0.3.tar.gz) = 6544608
+MD5 (vtigerCRM-5.0.3-PHP5.2-Patch1.tar.gz) = 1552f8ea59f1b152fc5486ccb4825288
+SHA256 (vtigerCRM-5.0.3-PHP5.2-Patch1.tar.gz) = 91600e6a69126df33f3c5018fa190db2d404e5cfced3c7efc3c8f26e65ec4952
+SIZE (vtigerCRM-5.0.3-PHP5.2-Patch1.tar.gz) = 176877
diff --git a/www/vtiger/files/pkg-message.in b/www/vtiger/files/pkg-message.in
index 922b2cc5cf78..9dfb236db9d4 100644
--- a/www/vtiger/files/pkg-message.in
+++ b/www/vtiger/files/pkg-message.in
@@ -1,18 +1,17 @@
****************************************************************
-vtiger is installed in %%PREFIX%%/www/vtiger.
+vtiger has been installed into:
-You need to create an MySQL database called vtiger, and an user
-vtiger which is allowed to acces the database from localhost.
+ %%WWWDIR%%
-Then, setup a virtual host in your webserver which has DocumentRoot
-to %%PREFIX%%/www/vtiger. If your php.ini states that all errors
-should go to the users webbrowser, better turn that off now:
- php_flag display_errors Off
+You will probably want to add an alias to your httpd.conf file,
+somethinglike this:
-Connect to that virtual host with your webbrowser and run the
-installation script. After the creation of config.php, you can edit
-it and properly configure the db_name, db_user_name and db_password.
+ Alias /vtiger "%%WWWDIR%%"
-The rest of the installation should go smoothly.
+and restart httpd.
+To finish the installation, open:
+ http://<hostname>/vtiger/install.php
+
+in your webbrowser and run the installation script.
****************************************************************
diff --git a/www/vtiger/pkg-descr b/www/vtiger/pkg-descr
index be44c72a1028..3437250f478d 100644
--- a/www/vtiger/pkg-descr
+++ b/www/vtiger/pkg-descr
@@ -1,7 +1,15 @@
vtiger CRM is an open source Customer Relationship Management (CRM)
software mainly for small and medium businesses. vtiger CRM is
built over proven, fast, and reliable LAMP/WAMP (Linux/Windows,
-Apache, MySQL, and PHP) technologies and open source projects, such
-as SugarCRM (SPL 1.1.2), phpBB (GPL), and others.
+Apache, MySQL, and PHP) technologies and other open source projects.
+
+Features: Sales force Automation, customer support & service,
+marketing automation, inventory management, multiple database
+support, security management, product customization, calendaring,
+E-mail integration, add-ons, and others.
+
+vtiger CRM provides as plugin: Customer Portal, Outlook Plug-in
+for Microsoft Outlook users, Office Plug-in for Microsoft Word
+users, and Thunderbird Extension for Thunderbird mail users.
WWW: http://www.vtiger.com
diff --git a/www/vtiger/pkg-plist b/www/vtiger/pkg-plist
index e94a2c90a945..369d9f784ad4 100644
--- a/www/vtiger/pkg-plist
+++ b/www/vtiger/pkg-plist
@@ -1,3642 +1,3798 @@
-www/vtiger/license/License_windows.txt
-www/vtiger/license/License_linux.txt
-www/vtiger/test/logo/logo.txt
-www/vtiger/test/logo/vtiger-crm-logo.jpg
-www/vtiger/test/logo/sale.jpeg
-www/vtiger/test/product/product6.jpeg
-www/vtiger/test/product/vtigercrm.txt
-www/vtiger/test/product/product1.jpeg
-www/vtiger/test/product/product3.jpeg
-www/vtiger/test/product/product5.jpeg
-www/vtiger/test/product/product7.jpeg
-www/vtiger/test/product/product9.jpeg
-www/vtiger/test/product/product2.jpeg
-www/vtiger/test/product/product10.jpeg
-www/vtiger/test/product/product4.jpeg
-www/vtiger/test/product/product8.jpeg
-www/vtiger/test/contact/a.txt
-www/vtiger/test/user/ela.jpg
-www/vtiger/test/user/a.txt
-www/vtiger/test/user/richie.jpg
-www/vtiger/test/wordtemplatedownload/todel.txt
-www/vtiger/test/upload/vtigercrm.txt
-www/vtiger/modules/Import/language/en_us.lang.php
-www/vtiger/modules/Import/ImportAccount.php
-www/vtiger/modules/Import/ImportStep1.php
-www/vtiger/modules/Import/error.php
-www/vtiger/modules/Import/ImportProduct.php
-www/vtiger/modules/Import/ImportSave.php
-www/vtiger/modules/Import/index.php
-www/vtiger/modules/Import/ImportOpportunity.php
-www/vtiger/modules/Import/ImportMap.php
-www/vtiger/modules/Import/ImportStep3.php
-www/vtiger/modules/Import/UsersLastImport.php
-www/vtiger/modules/Import/ImportSteplast.php
-www/vtiger/modules/Import/ImportStepundo.php
-www/vtiger/modules/Import/Forms.php
-www/vtiger/modules/Import/parse_utils.php
-www/vtiger/modules/Import/ImportContact.php
-www/vtiger/modules/Import/ImportAjax.php
-www/vtiger/modules/Import/ImportButton.php
-www/vtiger/modules/Import/ImportLead.php
-www/vtiger/modules/Import/ImportStep2.php
-www/vtiger/modules/Leads/language/en_us.lang.php
-www/vtiger/modules/Leads/Popup.php
-www/vtiger/modules/Leads/ListView.php
-www/vtiger/modules/Leads/CallRelatedList.php
-www/vtiger/modules/Leads/index.php
-www/vtiger/modules/Leads/LeadsAjax.php
-www/vtiger/modules/Leads/ConvertLead.php
-www/vtiger/modules/Leads/TagCloud.php
-www/vtiger/modules/Leads/Merge.php
-www/vtiger/modules/Leads/CustomAction.php
-www/vtiger/modules/Leads/Leads.php
-www/vtiger/modules/Leads/LeadConvertToEntities.php
-www/vtiger/modules/Leads/updateRelations.php
-www/vtiger/modules/Leads/CustomView.php
-www/vtiger/modules/Leads/result.php
-www/vtiger/modules/Leads/Import.php
-www/vtiger/modules/Leads/PopupSearchForm.html
-www/vtiger/modules/Leads/Lead.php
-www/vtiger/modules/Leads/ConvertLead.html
-www/vtiger/modules/Leads/Save.php
-www/vtiger/modules/Leads/DetailView.php
-www/vtiger/modules/Leads/ListViewTop.php
-www/vtiger/modules/Leads/EditView.php
-www/vtiger/modules/Leads/Delete.php
-www/vtiger/modules/Leads/Lead.js
-www/vtiger/modules/Leads/DetailViewAjax.php
-www/vtiger/modules/Leads/Popup_picker.html
-www/vtiger/modules/Leads/QuickCreate.php
-www/vtiger/modules/Accounts/language/en_us.lang.php
-www/vtiger/modules/Accounts/Popup.php
-www/vtiger/modules/Accounts/ListView.php
-www/vtiger/modules/Accounts/CustomAction.php
-www/vtiger/modules/Accounts/Accounts.php
-www/vtiger/modules/Accounts/QuickCreate.php
-www/vtiger/modules/Accounts/HeadLines.php
-www/vtiger/modules/Accounts/Save.php
-www/vtiger/modules/Accounts/Account.php
-www/vtiger/modules/Accounts/AccountsAjax.php
-www/vtiger/modules/Accounts/Merge.php
-www/vtiger/modules/Accounts/TagCloud.php
-www/vtiger/modules/Accounts/Account.js
-www/vtiger/modules/Accounts/Tickerdetail.php
-www/vtiger/modules/Accounts/DetailViewAjax.php
-www/vtiger/modules/Accounts/PopupSearchForm.html
-www/vtiger/modules/Accounts/CallRelatedList.php
-www/vtiger/modules/Accounts/CustomView.php
-www/vtiger/modules/Accounts/EditView.php
-www/vtiger/modules/Accounts/index.php
-www/vtiger/modules/Accounts/ListViewTop.php
-www/vtiger/modules/Accounts/Import.php
-www/vtiger/modules/Accounts/Delete.php
-www/vtiger/modules/Accounts/DetailView.php
-www/vtiger/modules/System/templates/classic/images/trans.gif
-www/vtiger/modules/System/templates/classic/images/bar_middle.gif
-www/vtiger/modules/System/templates/classic/images/bar_right.gif
-www/vtiger/modules/System/templates/classic/images/redbar_right.gif
-www/vtiger/modules/System/templates/classic/images/redbar_left.gif
-www/vtiger/modules/System/templates/classic/images/redbar_middle.gif
-www/vtiger/modules/System/templates/classic/images/bar_left.gif
-www/vtiger/modules/System/templates/classic/classic.css
-www/vtiger/modules/System/templates/classic/form.tpl
-www/vtiger/modules/System/templates/classic/box.tpl
-www/vtiger/modules/System/images/Darwin.gif
-www/vtiger/modules/System/images/FreeBSD.gif
-www/vtiger/modules/System/images/Suse.gif
-www/vtiger/modules/System/images/Arch.gif
-www/vtiger/modules/System/images/Trustix.gif
-www/vtiger/modules/System/images/Fedora.gif
-www/vtiger/modules/System/images/Debian.gif
-www/vtiger/modules/System/images/Mandrake.gif
-www/vtiger/modules/System/images/Redhat.gif
-www/vtiger/modules/System/images/free-eos.gif
-www/vtiger/modules/System/images/OpenBSD.gif
-www/vtiger/modules/System/images/xp.gif
-www/vtiger/modules/System/images/Slackware.gif
-www/vtiger/modules/System/images/NetBSD.gif
-www/vtiger/modules/System/images/Gentoo.gif
-www/vtiger/modules/System/language/en_us.lang.php
-www/vtiger/modules/System/includes/mb/class.healthd.inc.php
-www/vtiger/modules/System/includes/mb/class.lmsensors.inc.php
-www/vtiger/modules/System/includes/mb/class.hwsensors.inc.php
-www/vtiger/modules/System/includes/mb/class.mbm5.inc.php
-www/vtiger/modules/System/includes/mb/class.mbmon.inc.php
-www/vtiger/modules/System/includes/mb/index.html
-www/vtiger/modules/System/includes/os/class.SunOS.inc.php
-www/vtiger/modules/System/includes/os/class.OpenBSD.inc.php
-www/vtiger/modules/System/includes/os/class.Darwin.inc.php
-www/vtiger/modules/System/includes/os/class.Linux.inc.php
-www/vtiger/modules/System/includes/os/class.BSD.common.inc.php
-www/vtiger/modules/System/includes/os/class.WINNT.inc.php
-www/vtiger/modules/System/includes/os/class.NetBSD.inc.php
-www/vtiger/modules/System/includes/os/class.HP-UX.inc.php
-www/vtiger/modules/System/includes/os/index.html
-www/vtiger/modules/System/includes/os/class.WINNT.inc.bak.php
-www/vtiger/modules/System/includes/os/class.parseProgs.inc.php
-www/vtiger/modules/System/includes/os/class.FreeBSD.inc.php
-www/vtiger/modules/System/includes/xml/memory.php
-www/vtiger/modules/System/includes/xml/mbinfo.php
-www/vtiger/modules/System/includes/xml/vitals.php
-www/vtiger/modules/System/includes/xml/hardware.php
-www/vtiger/modules/System/includes/xml/index.html
-www/vtiger/modules/System/includes/xml/network.php
-www/vtiger/modules/System/includes/xml/filesystems.php
-www/vtiger/modules/System/includes/xml/hddtemp.php
-www/vtiger/modules/System/includes/lang/sk.php
-www/vtiger/modules/System/includes/lang/bg.php
-www/vtiger/modules/System/includes/lang/gr.php
-www/vtiger/modules/System/includes/lang/ru.php
-www/vtiger/modules/System/includes/lang/ro.php
-www/vtiger/modules/System/includes/lang/lt.php
-www/vtiger/modules/System/includes/lang/da.php
-www/vtiger/modules/System/includes/lang/ct.php
-www/vtiger/modules/System/includes/lang/tr.php
-www/vtiger/modules/System/includes/lang/cn.php
-www/vtiger/modules/System/includes/lang/ko.php
-www/vtiger/modules/System/includes/lang/et.php
-www/vtiger/modules/System/includes/lang/sv.php
-www/vtiger/modules/System/includes/lang/en.php
-www/vtiger/modules/System/includes/lang/br.php
-www/vtiger/modules/System/includes/lang/pt.php
-www/vtiger/modules/System/includes/lang/ar_utf8.php
-www/vtiger/modules/System/includes/lang/jp.php
-www/vtiger/modules/System/includes/lang/big5.php
-www/vtiger/modules/System/includes/lang/ja.php
-www/vtiger/modules/System/includes/lang/lv.php
-www/vtiger/modules/System/includes/lang/index.html
-www/vtiger/modules/System/includes/lang/it.php
-www/vtiger/modules/System/includes/lang/tw.php
-www/vtiger/modules/System/includes/lang/fr.php
-www/vtiger/modules/System/includes/lang/cs.php
-www/vtiger/modules/System/includes/lang/fi.php
-www/vtiger/modules/System/includes/lang/ca.php
-www/vtiger/modules/System/includes/lang/hu.php
-www/vtiger/modules/System/includes/lang/es.php
-www/vtiger/modules/System/includes/lang/de.php
-www/vtiger/modules/System/includes/lang/pt-br.php
-www/vtiger/modules/System/includes/lang/is.php
-www/vtiger/modules/System/includes/lang/id.php
-www/vtiger/modules/System/includes/lang/no.php
-www/vtiger/modules/System/includes/lang/nl.php
-www/vtiger/modules/System/includes/lang/eu.php
-www/vtiger/modules/System/includes/lang/he.php
-www/vtiger/modules/System/includes/lang/pl.php
-www/vtiger/modules/System/includes/class.Template.inc.php
-www/vtiger/modules/System/includes/common_functions.php
-www/vtiger/modules/System/includes/class.error.inc.php
-www/vtiger/modules/System/includes/system_header.php
-www/vtiger/modules/System/includes/XPath.class.php
-www/vtiger/modules/System/includes/system_footer.php
-www/vtiger/modules/System/config.php
-www/vtiger/modules/System/SystemAjax.php
-www/vtiger/modules/System/phpsysinfo.dtd
-www/vtiger/modules/System/systemconfig.php
-www/vtiger/modules/System/listsysconfig.php
-www/vtiger/modules/SalesOrder/pdf_templates/lastpage/footer.php
-www/vtiger/modules/SalesOrder/pdf_templates/lastpage/body.php
-www/vtiger/modules/SalesOrder/pdf_templates/header.php
-www/vtiger/modules/SalesOrder/pdf_templates/footer.php
-www/vtiger/modules/SalesOrder/language/en_us.lang.php
-www/vtiger/modules/SalesOrder/CustomView.php
-www/vtiger/modules/SalesOrder/EditView.php
-www/vtiger/modules/SalesOrder/DetailView.php
-www/vtiger/modules/SalesOrder/ListView.php
-www/vtiger/modules/SalesOrder/Popup.php
-www/vtiger/modules/SalesOrder/TagCloud.php
-www/vtiger/modules/SalesOrder/index.php
-www/vtiger/modules/SalesOrder/SalesOrderAjax.php
-www/vtiger/modules/SalesOrder/CallRelatedList.php
-www/vtiger/modules/SalesOrder/SalesOrder.php
-www/vtiger/modules/SalesOrder/SalesOrder.js
-www/vtiger/modules/SalesOrder/CreateSOPDF.php
-www/vtiger/modules/SalesOrder/Save.php
-www/vtiger/modules/SalesOrder/DetailViewAjax.php
-www/vtiger/modules/SalesOrder/Delete.php
-www/vtiger/modules/SalesOrder/ListTopSalesOrder.php
-www/vtiger/modules/Home/language/en_us.lang.php
-www/vtiger/modules/Home/Forms.php
-www/vtiger/modules/Home/UnifiedSearch.php
-www/vtiger/modules/Home/home_rss.php
-www/vtiger/modules/Home/index.php
-www/vtiger/modules/Home/LastViewed.php
-www/vtiger/modules/Vendors/language/en_us.lang.php
-www/vtiger/modules/Vendors/Vendor.php
-www/vtiger/modules/Vendors/Save.php
-www/vtiger/modules/Vendors/Popup.php
-www/vtiger/modules/Vendors/updateRelations.php
-www/vtiger/modules/Vendors/index.php
-www/vtiger/modules/Vendors/CustomView.php
-www/vtiger/modules/Vendors/EditView.php
-www/vtiger/modules/Vendors/ListView.php
-www/vtiger/modules/Vendors/DetailView.php
-www/vtiger/modules/Vendors/QuickCreate.php
-www/vtiger/modules/Vendors/VendorsAjax.php
-www/vtiger/modules/Vendors/TagCloud.php
-www/vtiger/modules/Vendors/CallRelatedList.php
-www/vtiger/modules/Vendors/Vendors.php
-www/vtiger/modules/Vendors/Delete.php
-www/vtiger/modules/Vendors/Vendor.js
-www/vtiger/modules/Vendors/DetailViewAjax.php
-www/vtiger/modules/Webmails/images/trashcan_empty.png
-www/vtiger/modules/Webmails/images/mail_reply.png
-www/vtiger/modules/Webmails/images/next.gif
-www/vtiger/modules/Webmails/images/gnome-fs-trash-full.png
-www/vtiger/modules/Webmails/images/inbox.png
-www/vtiger/modules/Webmails/images/previous.gif
-www/vtiger/modules/Webmails/images/stock_mail-open.png
-www/vtiger/modules/Webmails/images/plus.png
-www/vtiger/modules/Webmails/images/sm_logo.png
-www/vtiger/modules/Webmails/images/down_pointer.png
-www/vtiger/modules/Webmails/images/senti.png
-www/vtiger/modules/Webmails/images/flag.png
-www/vtiger/modules/Webmails/images/up_pointer.png
-www/vtiger/modules/Webmails/images/sec_remove_eng.png
-www/vtiger/modules/Webmails/images/stock_mail-replied.png
-www/vtiger/modules/Webmails/images/stock_mail.png
-www/vtiger/modules/Webmails/images/sort_none.png
-www/vtiger/modules/Webmails/images/delitem.png
-www/vtiger/modules/Webmails/images/stock_mail-read.png
-www/vtiger/modules/Webmails/images/draft.png
-www/vtiger/modules/Webmails/images/stock_trash_full.png
-www/vtiger/modules/Webmails/images/start.gif
-www/vtiger/modules/Webmails/images/plus.gif
-www/vtiger/modules/Webmails/images/stock_macro-jump-back.png
-www/vtiger/modules/Webmails/images/index.php
-www/vtiger/modules/Webmails/images/stock_mail-flag-for-followup.png
-www/vtiger/modules/Webmails/images/stock_mail-forward.png
-www/vtiger/modules/Webmails/images/folder.png
-www/vtiger/modules/Webmails/images/stock_mail-flag-for-followup-done.png
-www/vtiger/modules/Webmails/images/minus.png
-www/vtiger/modules/Webmails/images/gnome-fs-trash-empty.png
-www/vtiger/modules/Webmails/images/stock_mail-reply.png
-www/vtiger/modules/Webmails/images/end.gif
-www/vtiger/modules/Webmails/images/stock_mail-priority-high.png
-www/vtiger/modules/Webmails/images/stock_attach.png
-www/vtiger/modules/Webmails/images/stock_mail-hide-read.png
-www/vtiger/modules/Webmails/images/stock_mail-unread.png
-www/vtiger/modules/Webmails/js/script.js
-www/vtiger/modules/Webmails/language/en_us.lang.php
-www/vtiger/modules/Webmails/index.php
-www/vtiger/modules/Webmails/ListView.php
-www/vtiger/modules/Webmails/webmails.js
-www/vtiger/modules/Webmails/CallRelatedList.php
-www/vtiger/modules/Webmails/Forms.php
-www/vtiger/modules/Webmails/WebmailsAjax.php
-www/vtiger/modules/Webmails/Webmail.php
-www/vtiger/modules/Webmails/body.php
-www/vtiger/modules/Webmails/TODO
-www/vtiger/modules/Webmails/dlAttachments.php
-www/vtiger/modules/Webmails/DetailView.php
-www/vtiger/modules/Webmails/Save.php
-www/vtiger/modules/Webmails/MailParse.php
-www/vtiger/modules/Webmails/MailBox.php
-www/vtiger/modules/Campaigns/language/en_us.lang.php
-www/vtiger/modules/Campaigns/DetailViewAjax.php
-www/vtiger/modules/Campaigns/CallRelatedList.php
-www/vtiger/modules/Campaigns/EditView.php
-www/vtiger/modules/Campaigns/ListView.php
-www/vtiger/modules/Campaigns/QuickCreate.php
-www/vtiger/modules/Campaigns/Save.php
-www/vtiger/modules/Campaigns/CampaignsAjax.php
-www/vtiger/modules/Campaigns/TagCloud.php
-www/vtiger/modules/Campaigns/updateRelations.php
-www/vtiger/modules/Campaigns/Popup.php
-www/vtiger/modules/Campaigns/index.php
-www/vtiger/modules/Campaigns/LoadList.php
-www/vtiger/modules/Campaigns/Campaign.php
-www/vtiger/modules/Campaigns/Campaign.js
-www/vtiger/modules/Campaigns/Delete.php
-www/vtiger/modules/Campaigns/Campaigns.php
-www/vtiger/modules/Campaigns/DetailView.php
-www/vtiger/modules/Campaigns/CustomView.php
-www/vtiger/modules/Portal/language/en_us.lang.php
-www/vtiger/modules/Portal/Save.php
-www/vtiger/modules/Portal/Delete.php
-www/vtiger/modules/Portal/Popup.php
-www/vtiger/modules/Portal/ListView.php
-www/vtiger/modules/Portal/index.php
-www/vtiger/modules/Portal/PortalAjax.php
-www/vtiger/modules/Portal/Portal.php
-www/vtiger/modules/Portal/Portal.js
-www/vtiger/modules/Users/language/en_us.lang.php
-www/vtiger/modules/Users/detailviewemailtemplate.php
-www/vtiger/modules/Users/SaveAuditTrail.php
-www/vtiger/modules/Users/DeleteRole.php
-www/vtiger/modules/Users/ShowAuditTrail.php
-www/vtiger/modules/Users/CreateProfile.php
-www/vtiger/modules/Users/EditInventoryNotification.php
-www/vtiger/modules/Users/CreateSharingRule.php
-www/vtiger/modules/Users/AuditTrail.php
-www/vtiger/modules/Users/DeleteGroup.php
-www/vtiger/modules/Users/SaveNotification.php
-www/vtiger/modules/Users/Login.php
-www/vtiger/modules/Users/DefaultDataPopulator.php
-www/vtiger/modules/Users/listinventorynotifications.php
-www/vtiger/modules/Users/UserGroups.php
-www/vtiger/modules/Users/ShowHistory.php
-www/vtiger/modules/Users/Delete.php
-www/vtiger/modules/Users/massdelete.php
-www/vtiger/modules/Users/OrgSharingEditView.php
-www/vtiger/modules/Users/UpdateDefaultFieldLevelAccess.php
-www/vtiger/modules/Users/EditDefOrgFieldLevelAccess.php
-www/vtiger/modules/Users/AuditTrailList.php
-www/vtiger/modules/Users/listgroups.php
-www/vtiger/modules/Users/editemailtemplate.php
-www/vtiger/modules/Users/Logout.php
-www/vtiger/modules/Users/RecalculateSharingRules.php
-www/vtiger/modules/Users/UsersAjax.php
-www/vtiger/modules/Users/Forms.php
-www/vtiger/modules/Users/listwordtemplates.php
-www/vtiger/modules/Users/TemplateMerge.php
-www/vtiger/modules/Users/updateNotificationSchedulers.php
-www/vtiger/modules/Users/createrole.php
-www/vtiger/modules/Users/SaveRole.php
-www/vtiger/modules/Users/SaveOrgSharing.php
-www/vtiger/modules/Users/ChangePassword.php
-www/vtiger/modules/Users/add2db.php
-www/vtiger/modules/Users/SaveDefModuleView.php
-www/vtiger/modules/Users/listroles.php
-www/vtiger/modules/Users/OrganizationTermsandConditions.php
-www/vtiger/modules/Users/DeleteSharingRule.php
-www/vtiger/modules/Users/DeleteProfile.php
-www/vtiger/modules/Users/Users.js
-www/vtiger/modules/Users/listnotificationschedulers.php
-www/vtiger/modules/Users/SaveGroup.php
-www/vtiger/modules/Users/ProfileDeleteStep1.php
-www/vtiger/modules/Users/downloadfile.php
-www/vtiger/modules/Users/about_us.php
-www/vtiger/modules/Users/DefModuleView.php
-www/vtiger/modules/Users/RolePopup.php
-www/vtiger/modules/Users/ShowHistory.html
-www/vtiger/modules/Users/Authenticate.php
-www/vtiger/modules/Users/Announcements.php
-www/vtiger/modules/Users/lookupemailtemplates.php
-www/vtiger/modules/Users/GroupDeleteStep1.php
-www/vtiger/modules/Users/LoginHistory.php
-www/vtiger/modules/Users/ListLoginHistory.php
-www/vtiger/modules/Users/notify_detail.php
-www/vtiger/modules/Users/Error.php
-www/vtiger/modules/Users/SaveProfile.php
-www/vtiger/modules/Users/DeleteUser.php
-www/vtiger/modules/Users/DetailViewAjax.php
-www/vtiger/modules/Users/profilePrivileges.php
-www/vtiger/modules/Users/EditView.php
-www/vtiger/modules/Users/deleteemailtemplate.php
-www/vtiger/modules/Users/RoleDragDrop.php
-www/vtiger/modules/Users/CreateUserPrivilegeFile.php
-www/vtiger/modules/Users/DefaultFieldPermissions.php
-www/vtiger/modules/Users/Users.php
-www/vtiger/modules/Users/populatetemplate.php
-www/vtiger/modules/Users/upload.php
-www/vtiger/modules/Users/UpdateProfileChanges.php
-www/vtiger/modules/Users/ListView.php
-www/vtiger/modules/Users/RoleDeleteStep1.php
-www/vtiger/modules/Users/listemailtemplates.php
-www/vtiger/modules/Users/SaveSharingRule.php
-www/vtiger/modules/Users/EditNotification.php
-www/vtiger/modules/Users/massChangeStatus.php
-www/vtiger/modules/Users/createemailtemplate.php
-www/vtiger/modules/Users/Save.php
-www/vtiger/modules/Users/savetermsandconditions.php
-www/vtiger/modules/Users/User.php
-www/vtiger/modules/Users/UserDeleteStep1.php
-www/vtiger/modules/Users/SaveInventoryNotification.php
-www/vtiger/modules/Users/RenameProfile.php
-www/vtiger/modules/Users/DetailView.php
-www/vtiger/modules/Users/binaryfilelist.php
-www/vtiger/modules/Users/SearchForm.html
-www/vtiger/modules/Users/Popup.php
-www/vtiger/modules/Users/updateLeadDBStatus.php
-www/vtiger/modules/Users/deletewordtemplate.php
-www/vtiger/modules/Users/ListProfiles.php
-www/vtiger/modules/Users/saveemailtemplate.php
-www/vtiger/modules/Users/createnewgroup.php
-www/vtiger/modules/Users/OrgSharingDetailView.php
-www/vtiger/modules/Users/GroupDetailView.php
-www/vtiger/modules/Users/RoleDetailView.php
-www/vtiger/modules/Reports/language/en_us.lang.php
-www/vtiger/modules/Reports/ReportRun.php
-www/vtiger/modules/Reports/Report.js
-www/vtiger/modules/Reports/CreatePDF.php
-www/vtiger/modules/Reports/ReportColumns.php
-www/vtiger/modules/Reports/ReportGrouping.php
-www/vtiger/modules/Reports/ReportsAjax.php
-www/vtiger/modules/Reports/SaveReportFolder.php
-www/vtiger/modules/Reports/ReportType.php
-www/vtiger/modules/Reports/AdvancedFilter.php
-www/vtiger/modules/Reports/SaveReport0.php
-www/vtiger/modules/Reports/Reports.php
-www/vtiger/modules/Reports/ReportColumnsTotal.php
-www/vtiger/modules/Reports/SaveAndRun.php
-www/vtiger/modules/Reports/Save.php
-www/vtiger/modules/Reports/PopulateReports.php
-www/vtiger/modules/Reports/index.php
-www/vtiger/modules/Reports/NewReport1.php
-www/vtiger/modules/Reports/ListView.php
-www/vtiger/modules/Reports/Delete.php
-www/vtiger/modules/Reports/PrintReport.php
-www/vtiger/modules/Reports/StandardFilter.php
-www/vtiger/modules/Reports/CreateXL.php
-www/vtiger/modules/Reports/SaveReport.php
-www/vtiger/modules/Reports/DeleteReportFolder.php
-www/vtiger/modules/Reports/NewReport0.php
-www/vtiger/modules/Reports/Forms.php
-www/vtiger/modules/Reports/ReportFilters.php
-www/vtiger/modules/Reports/ChangeFolder.php
-www/vtiger/modules/Contacts/js/chat.js
-www/vtiger/modules/Contacts/js/ajax.js
-www/vtiger/modules/Contacts/js/css-window_p.js
-www/vtiger/modules/Contacts/js/dom-drag_p.js
-www/vtiger/modules/Contacts/imgs/close.gif
-www/vtiger/modules/Contacts/imgs/box_BR.gif
-www/vtiger/modules/Contacts/imgs/box_BL.gif
-www/vtiger/modules/Contacts/imgs/box_MR.gif
-www/vtiger/modules/Contacts/imgs/box_ML.gif
-www/vtiger/modules/Contacts/imgs/btn_send.gif
-www/vtiger/modules/Contacts/imgs/user_icon.gif
-www/vtiger/modules/Contacts/imgs/bx_B.gif
-www/vtiger/modules/Contacts/imgs/icone_keyb.gif
-www/vtiger/modules/Contacts/imgs/2tbarPrivateChat.gif
-www/vtiger/modules/Contacts/imgs/icone_chat.gif
-www/vtiger/modules/Contacts/imgs/box_T.gif
-www/vtiger/modules/Contacts/imgs/hide.gif
-www/vtiger/modules/Contacts/imgs/btn_hide.gif
-www/vtiger/modules/Contacts/imgs/box_M.gif
-www/vtiger/modules/Contacts/imgs/site_bg.gif
-www/vtiger/modules/Contacts/imgs/2tbarPublicChat.gif
-www/vtiger/modules/Contacts/imgs/box_TR.gif
-www/vtiger/modules/Contacts/imgs/box_TL.gif
-www/vtiger/modules/Contacts/imgs/btn_close.gif
-www/vtiger/modules/Contacts/language/en_us.lang.php
-www/vtiger/modules/Contacts/chat.php
-www/vtiger/modules/Contacts/Contact.js
-www/vtiger/modules/Contacts/EditView.php
-www/vtiger/modules/Contacts/DelImage.php
-www/vtiger/modules/Contacts/QuickCreate.php
-www/vtiger/modules/Contacts/DetailViewAjax.php
-www/vtiger/modules/Contacts/Save.php
-www/vtiger/modules/Contacts/ContactsAjax.php
-www/vtiger/modules/Contacts/updateRelations.php
-www/vtiger/modules/Contacts/ListView.php
-www/vtiger/modules/Contacts/Popup.php
-www/vtiger/modules/Contacts/index.php
-www/vtiger/modules/Contacts/PopupSearchForm.html
-www/vtiger/modules/Contacts/TagCloud.php
-www/vtiger/modules/Contacts/Popup_picker.html
-www/vtiger/modules/Contacts/vtchat.php
-www/vtiger/modules/Contacts/Import.php
-www/vtiger/modules/Contacts/CustomView.php
-www/vtiger/modules/Contacts/Delete.php
-www/vtiger/modules/Contacts/contactSeedData.php
-www/vtiger/modules/Contacts/DetailView.php
-www/vtiger/modules/Contacts/Merge.php
-www/vtiger/modules/Contacts/CustomAction.php
-www/vtiger/modules/Contacts/Contacts.php
-www/vtiger/modules/Contacts/Contact.php
-www/vtiger/modules/Contacts/CallRelatedList.php
-www/vtiger/modules/Contacts/chat.css
-www/vtiger/modules/Emails/language/en_us.lang.php
-www/vtiger/modules/Emails/templates/todel.txt
-www/vtiger/modules/Emails/templates/testemailtemplateusage.php
-www/vtiger/modules/Emails/webmailsend.php
-www/vtiger/modules/Emails/updateRelations.php
-www/vtiger/modules/Emails/EditView.php
-www/vtiger/modules/Emails/class.smtp.php
-www/vtiger/modules/Emails/SearchForm.html
-www/vtiger/modules/Emails/Email.php
-www/vtiger/modules/Emails/ListView.php
-www/vtiger/modules/Emails/PHPMailer_LICENSE.txt
-www/vtiger/modules/Emails/EmailsAjax.php
-www/vtiger/modules/Emails/index.php
-www/vtiger/modules/Emails/Delete.php
-www/vtiger/modules/Emails/mailsend.php
-www/vtiger/modules/Emails/Email.js
-www/vtiger/modules/Emails/CustomView.php
-www/vtiger/modules/Emails/gotodownload.php
-www/vtiger/modules/Emails/mailbox.php
-www/vtiger/modules/Emails/CallRelatedList.php
-www/vtiger/modules/Emails/mailSelect.php
-www/vtiger/modules/Emails/DetailView.php
-www/vtiger/modules/Emails/class.phpmailer.php
-www/vtiger/modules/Emails/Choose.php
-www/vtiger/modules/Emails/ChooseEmail.php
-www/vtiger/modules/Emails/mail.php
-www/vtiger/modules/Emails/Emails.php
-www/vtiger/modules/Emails/sendmail.php
-www/vtiger/modules/Emails/Save.php
-www/vtiger/modules/Notes/language/en_us.lang.php
-www/vtiger/modules/Notes/Delete.php
-www/vtiger/modules/Notes/Note.js
-www/vtiger/modules/Notes/index.php
-www/vtiger/modules/Notes/Note.php
-www/vtiger/modules/Notes/Notes.php
-www/vtiger/modules/Notes/Save.php
-www/vtiger/modules/Notes/QuickCreate.php
-www/vtiger/modules/Notes/EditView.php
-www/vtiger/modules/Notes/ListView.php
-www/vtiger/modules/Notes/DetailViewAjax.php
-www/vtiger/modules/Notes/TagCloud.php
-www/vtiger/modules/Notes/CustomView.php
-www/vtiger/modules/Notes/NotesAjax.php
-www/vtiger/modules/Notes/DetailView.php
-www/vtiger/modules/HelpDesk/language/en_us.lang.php
-www/vtiger/modules/HelpDesk/ConvertAsFAQ.php
-www/vtiger/modules/HelpDesk/CumulStatistics.php
-www/vtiger/modules/HelpDesk/Popup.php
-www/vtiger/modules/HelpDesk/index.php
-www/vtiger/modules/HelpDesk/HelpDesk.js
-www/vtiger/modules/HelpDesk/CustomView.php
-www/vtiger/modules/HelpDesk/QuickCreate.php
-www/vtiger/modules/HelpDesk/DetailView.php
-www/vtiger/modules/HelpDesk/HelpDeskAjax.php
-www/vtiger/modules/HelpDesk/EditView.php
-www/vtiger/modules/HelpDesk/ConvertToEntities.php
-www/vtiger/modules/HelpDesk/ListView.php
-www/vtiger/modules/HelpDesk/SearchForm.html
-www/vtiger/modules/HelpDesk/Save.php
-www/vtiger/modules/HelpDesk/Delete.php
-www/vtiger/modules/HelpDesk/DetailViewAjax.php
-www/vtiger/modules/HelpDesk/HelpDesk.php
-www/vtiger/modules/HelpDesk/Merge.php
-www/vtiger/modules/HelpDesk/ListTickets.php
-www/vtiger/modules/HelpDesk/TagCloud.php
-www/vtiger/modules/HelpDesk/TicketStatisticsUtil.php
-www/vtiger/modules/HelpDesk/CallRelatedList.php
-www/vtiger/modules/Faq/language/en_us.lang.php
-www/vtiger/modules/Faq/CustomView.php
-www/vtiger/modules/Faq/DetailView.php
-www/vtiger/modules/Faq/TagCloud.php
-www/vtiger/modules/Faq/ListFaq.php
-www/vtiger/modules/Faq/Save.php
-www/vtiger/modules/Faq/SearchForm.html
-www/vtiger/modules/Faq/EditView.php
-www/vtiger/modules/Faq/Delete.php
-www/vtiger/modules/Faq/Faq.php
-www/vtiger/modules/Faq/index.php
-www/vtiger/modules/Faq/ListView.php
-www/vtiger/modules/Faq/FaqAjax.php
-www/vtiger/modules/Faq/DetailViewAjax.php
-www/vtiger/modules/Faq/Faq.js
-www/vtiger/modules/Settings/language/en_us.lang.php
-www/vtiger/modules/Settings/EditComboField.php
-www/vtiger/modules/Settings/LeadCustomFieldMapping.php
-www/vtiger/modules/Settings/add2db.php
-www/vtiger/modules/Settings/PickList.php
-www/vtiger/modules/Settings/SaveMailAccount.php
-www/vtiger/modules/Settings/ListMailAccount.php
-www/vtiger/modules/Settings/EmailConfig.php
-www/vtiger/modules/Settings/SaveEnableBackup.php
-www/vtiger/modules/Settings/ProxyServerConfig.php
-www/vtiger/modules/Settings/UpdateComboValues.php
-www/vtiger/modules/Settings/Save.php
-www/vtiger/modules/Settings/EditCompanyDetails.php
-www/vtiger/modules/Settings/downloadfile.php
-www/vtiger/modules/Settings/CurrencyDeleteStep1.php
-www/vtiger/modules/Settings/CustomFieldList.php
-www/vtiger/modules/Settings/DeleteMailAccount.php
-www/vtiger/modules/Settings/index.php
-www/vtiger/modules/Settings/AddMailAccount.php
-www/vtiger/modules/Settings/OrganizationConfig.php
-www/vtiger/modules/Settings/CreateCustomField.php
-www/vtiger/modules/Settings/vtigerCRM.CAB
-www/vtiger/modules/Settings/DeleteLeadCustomFieldMapping.php
-www/vtiger/modules/Settings/SaveCurrencyInfo.php
-www/vtiger/modules/Settings/SaveCompany.php
-www/vtiger/modules/Settings/BackupServerConfig.php
-www/vtiger/modules/Settings/fieldtypes.html
-www/vtiger/modules/Settings/CurrencyEditView.php
-www/vtiger/modules/Settings/TaxConfig.php
-www/vtiger/modules/Settings/DeleteCustomField.php
-www/vtiger/modules/Settings/SettingsAjax.php
-www/vtiger/modules/Settings/SaveConvertLead.php
-www/vtiger/modules/Settings/Forms.php
-www/vtiger/modules/Settings/AddCustomFieldToDB.php
-www/vtiger/modules/Settings/EditField.html
-www/vtiger/modules/Settings/CurrencyDelete.php
-www/vtiger/modules/Settings/ListModuleOwners.php
-www/vtiger/modules/Settings/CurrencyListView.php
-www/vtiger/modules/Products/language/en_us.lang.php
-www/vtiger/modules/Products/DetailViewAjax.php
-www/vtiger/modules/Products/index.php
-www/vtiger/modules/Products/CustomView.php
-www/vtiger/modules/Products/Import.php
-www/vtiger/modules/Products/DetailView.php
-www/vtiger/modules/Products/EditView.php
-www/vtiger/modules/Products/Productsslide.js
-www/vtiger/modules/Products/ListView.php
-www/vtiger/modules/Products/updateRelations.php
-www/vtiger/modules/Products/Delete.php
-www/vtiger/modules/Products/InventoryTaxAjax.php
-www/vtiger/modules/Products/UpdateListPrice.php
-www/vtiger/modules/Products/TagCloud.php
-www/vtiger/modules/Products/Save.php
-www/vtiger/modules/Products/Product.php
-www/vtiger/modules/Products/ProductsAjax.php
-www/vtiger/modules/Products/addPbProductRelToDB.php
-www/vtiger/modules/Products/multifile.js
-www/vtiger/modules/Products/Product.js
-www/vtiger/modules/Products/placeholder.gif
-www/vtiger/modules/Products/AddProductToPriceBooks.php
-www/vtiger/modules/Products/AddProductsToPriceBook.html
-www/vtiger/modules/Products/Products.php
-www/vtiger/modules/Products/AddProductToPriceBooks.html
-www/vtiger/modules/Products/AddProductsToPriceBook.php
-www/vtiger/modules/Products/CallRelatedList.php
-www/vtiger/modules/Products/DeletePriceBookProductRel.php
-www/vtiger/modules/Products/EditListPrice.php
-www/vtiger/modules/Products/Popup.php
-www/vtiger/modules/Calendar/language/en_us.lang.php
-www/vtiger/modules/Calendar/SendReminder.bat
-www/vtiger/modules/Calendar/OpenListView.php
-www/vtiger/modules/Calendar/Appointment.php
-www/vtiger/modules/Calendar/script.js
-www/vtiger/modules/Calendar/addEventUI.php
-www/vtiger/modules/Calendar/RenderRelatedListUI.php
-www/vtiger/modules/Calendar/updateRelations.php
-www/vtiger/modules/Calendar/EditView.php
-www/vtiger/modules/Calendar/CalendarCommon.php
-www/vtiger/modules/Calendar/QuickCreate.php
-www/vtiger/modules/Calendar/ListView.php
-www/vtiger/modules/Calendar/calendarLayout.php
-www/vtiger/modules/Calendar/CustomView.php
-www/vtiger/modules/Calendar/Date.php
-www/vtiger/modules/Calendar/DetailView.php
-www/vtiger/modules/Calendar/new_calendar.php
-www/vtiger/modules/Calendar/TagCloud.php
-www/vtiger/modules/Calendar/disable_sharing.php
-www/vtiger/modules/Calendar/Activity.js
-www/vtiger/modules/Calendar/Save.php
-www/vtiger/modules/Calendar/Activity.php
-www/vtiger/modules/Calendar/index.php
-www/vtiger/modules/Calendar/header.php
-www/vtiger/modules/Calendar/calendar_share.php
-www/vtiger/modules/Calendar/Delete.php
-www/vtiger/modules/Calendar/updateCalendarSharing.php
-www/vtiger/modules/Calendar/ActivityAjax.php
-www/vtiger/modules/Calendar/CalendarAjax.php
-www/vtiger/modules/Calendar/Calendar.php
-www/vtiger/modules/Calendar/TodoSave.php
-www/vtiger/modules/Utilities/language/en_us.lang.php
-www/vtiger/modules/Utilities/UtilitiesAjax.php
-www/vtiger/modules/Utilities/Merge.php
-www/vtiger/modules/Utilities/Calculator.php
-www/vtiger/modules/Utilities/Clock.php
-www/vtiger/modules/PurchaseOrder/language/en_us.lang.php
-www/vtiger/modules/PurchaseOrder/pdf_templates/lastpage/body.php
-www/vtiger/modules/PurchaseOrder/pdf_templates/lastpage/footer.php
-www/vtiger/modules/PurchaseOrder/pdf_templates/header.php
-www/vtiger/modules/PurchaseOrder/pdf_templates/footer.php
-www/vtiger/modules/PurchaseOrder/DetailView.php
-www/vtiger/modules/PurchaseOrder/CreatePDF.php
-www/vtiger/modules/PurchaseOrder/PurchaseOrderAjax.php
-www/vtiger/modules/PurchaseOrder/Popup.php
-www/vtiger/modules/PurchaseOrder/DetailViewAjax.php
-www/vtiger/modules/PurchaseOrder/index.php
-www/vtiger/modules/PurchaseOrder/ListTopPurchaseOrder.php
-www/vtiger/modules/PurchaseOrder/PurchaseOrder.php
-www/vtiger/modules/PurchaseOrder/Save.php
-www/vtiger/modules/PurchaseOrder/PurchaseOrder.js
-www/vtiger/modules/PurchaseOrder/EditView.php
-www/vtiger/modules/PurchaseOrder/ListView.php
-www/vtiger/modules/PurchaseOrder/CallRelatedList.php
-www/vtiger/modules/PurchaseOrder/TagCloud.php
-www/vtiger/modules/PurchaseOrder/Delete.php
-www/vtiger/modules/PurchaseOrder/CustomView.php
-www/vtiger/modules/Dashboard/language/en_us.lang.php
-www/vtiger/modules/Dashboard/Chart_pipeline_by_lead_source.php
-www/vtiger/modules/Dashboard/horizontal_bargraph.php
-www/vtiger/modules/Dashboard/Chart_lead_source_by_outcome.php
-www/vtiger/modules/Dashboard/pie_graph.php
-www/vtiger/modules/Dashboard/ReportsCharts.php
-www/vtiger/modules/Dashboard/Chart_my_pipeline_by_sales_stage.php
-www/vtiger/modules/Dashboard/display_charts.php
-www/vtiger/modules/Dashboard/Chart_outcome_by_month.php
-www/vtiger/modules/Dashboard/DashboardHome_matrix.php
-www/vtiger/modules/Dashboard/index.php
-www/vtiger/modules/Dashboard/vertical_bargraph.php
-www/vtiger/modules/Dashboard/Entity_charts.php
-www/vtiger/modules/Dashboard/HomepageDB.php
-www/vtiger/modules/Dashboard/Chart_pipeline_by_sales_stage.php
-www/vtiger/modules/Dashboard/line_graph.php
-www/vtiger/modules/Dashboard/accumulated_bargraph.php
-www/vtiger/modules/Dashboard/DashboardHome.php
-www/vtiger/modules/Dashboard/DashboardAjax.php
-www/vtiger/modules/Dashboard/Forms.php
-www/vtiger/modules/Invoice/pdf_templates/lastpage/body.php
-www/vtiger/modules/Invoice/pdf_templates/lastpage/footer.php
-www/vtiger/modules/Invoice/pdf_templates/footer.php
-www/vtiger/modules/Invoice/pdf_templates/header.php
-www/vtiger/modules/Invoice/language/en_us.lang.php
-www/vtiger/modules/Invoice/Invoice.php
-www/vtiger/modules/Invoice/EditView.php
-www/vtiger/modules/Invoice/Popup.php
-www/vtiger/modules/Invoice/ListView.php
-www/vtiger/modules/Invoice/index.php
-www/vtiger/modules/Invoice/CreatePDF.php
-www/vtiger/modules/Invoice/ListTopInvoice.php
-www/vtiger/modules/Invoice/CustomView.php
-www/vtiger/modules/Invoice/InvoiceAjax.php
-www/vtiger/modules/Invoice/TagCloud.php
-www/vtiger/modules/Invoice/Invoice.js
-www/vtiger/modules/Invoice/DetailViewAjax.php
-www/vtiger/modules/Invoice/CallRelatedList.php
-www/vtiger/modules/Invoice/Delete.php
-www/vtiger/modules/Invoice/DetailView.php
-www/vtiger/modules/Invoice/Save.php
-www/vtiger/modules/CustomView/language/en_us.lang.php
-www/vtiger/modules/CustomView/ListViewTop.php
-www/vtiger/modules/CustomView/Save.php
-www/vtiger/modules/CustomView/Forms.php
-www/vtiger/modules/CustomView/CustomView.php
-www/vtiger/modules/CustomView/Delete.php
-www/vtiger/modules/CustomView/CustomView.js
-www/vtiger/modules/CustomView/SendMailAction.php
-www/vtiger/modules/CustomView/EditView.php
-www/vtiger/modules/CustomView/PopulateCustomView.php
-www/vtiger/modules/CustomView/SaveAction.php
-www/vtiger/modules/CustomView/index.php
-www/vtiger/modules/uploads/language/en_us.lang.php
-www/vtiger/modules/uploads/deleteattachments.php
-www/vtiger/modules/uploads/downloadfile.php
-www/vtiger/modules/uploads/add2db.php
-www/vtiger/modules/uploads/upload.php
-www/vtiger/modules/uploads/uploadsAjax.php
-www/vtiger/modules/PriceBooks/language/en_us.lang.php
-www/vtiger/modules/PriceBooks/Delete.php
-www/vtiger/modules/PriceBooks/CustomView.php
-www/vtiger/modules/PriceBooks/PriceBook.js
-www/vtiger/modules/PriceBooks/PriceBook.php
-www/vtiger/modules/PriceBooks/DetailViewAjax.php
-www/vtiger/modules/PriceBooks/EditView.php
-www/vtiger/modules/PriceBooks/DetailView.php
-www/vtiger/modules/PriceBooks/PriceBooks.php
-www/vtiger/modules/PriceBooks/Popup.php
-www/vtiger/modules/PriceBooks/TagCloud.php
-www/vtiger/modules/PriceBooks/index.php
-www/vtiger/modules/PriceBooks/PriceBooksAjax.php
-www/vtiger/modules/PriceBooks/Save.php
-www/vtiger/modules/PriceBooks/CallRelatedList.php
-www/vtiger/modules/PriceBooks/QuickCreate.php
-www/vtiger/modules/PriceBooks/ListView.php
-www/vtiger/modules/Potentials/language/en_us.lang.php
-www/vtiger/modules/Potentials/PopupSearchForm.html
-www/vtiger/modules/Potentials/index.php
-www/vtiger/modules/Potentials/DetailViewAjax.php
-www/vtiger/modules/Potentials/PotentialsAjax.php
-www/vtiger/modules/Potentials/EditView.php
-www/vtiger/modules/Potentials/Potentials.php
-www/vtiger/modules/Potentials/ListViewTop.php
-www/vtiger/modules/Potentials/ListView.php
-www/vtiger/modules/Potentials/Save.php
-www/vtiger/modules/Potentials/Popup_picker.html
-www/vtiger/modules/Potentials/CallRelatedList.php
-www/vtiger/modules/Potentials/TagCloud.php
-www/vtiger/modules/Potentials/CustomView.php
-www/vtiger/modules/Potentials/Opportunity.php
-www/vtiger/modules/Potentials/DetailView.php
-www/vtiger/modules/Potentials/QuickCreate.php
-www/vtiger/modules/Potentials/Import.php
-www/vtiger/modules/Potentials/updateRelations.php
-www/vtiger/modules/Potentials/Charts.php
-www/vtiger/modules/Potentials/Opportunity.js
-www/vtiger/modules/Potentials/Popup.php
-www/vtiger/modules/Potentials/Delete.php
-www/vtiger/modules/Rss/language/en_us.lang.php
-www/vtiger/modules/Rss/Rss.php
-www/vtiger/modules/Rss/RssAjax.php
-www/vtiger/modules/Rss/ListView.php
-www/vtiger/modules/Rss/Rss.js
-www/vtiger/modules/Rss/Forms.php
-www/vtiger/modules/Rss/Delete.php
-www/vtiger/modules/Rss/Save.php
-www/vtiger/modules/Rss/Popup.html
-www/vtiger/modules/Rss/Star.php
-www/vtiger/modules/Rss/Popup.php
-www/vtiger/modules/Rss/ListView.html
-www/vtiger/modules/Rss/index.php
-www/vtiger/modules/Quotes/pdf_templates/lastpage/footer.php
-www/vtiger/modules/Quotes/pdf_templates/lastpage/body.php
-www/vtiger/modules/Quotes/pdf_templates/header.php
-www/vtiger/modules/Quotes/pdf_templates/footer.php
-www/vtiger/modules/Quotes/language/en_us.lang.php
-www/vtiger/modules/Quotes/Save.php
-www/vtiger/modules/Quotes/EditView.php
-www/vtiger/modules/Quotes/Quotes.php
-www/vtiger/modules/Quotes/Quote.php
-www/vtiger/modules/Quotes/ListView.php
-www/vtiger/modules/Quotes/QuotesAjax.php
-www/vtiger/modules/Quotes/CallRelatedList.php
-www/vtiger/modules/Quotes/TagCloud.php
-www/vtiger/modules/Quotes/Popup.php
-www/vtiger/modules/Quotes/index.php
-www/vtiger/modules/Quotes/DetailViewAjax.php
-www/vtiger/modules/Quotes/CustomView.php
-www/vtiger/modules/Quotes/CreatePDF.php
-www/vtiger/modules/Quotes/DetailView.php
-www/vtiger/modules/Quotes/Quote.js
-www/vtiger/modules/Quotes/Delete.php
-www/vtiger/modules/Quotes/ListTopQuotes.php
-www/vtiger/modules/Help/language/en_us.lang.php
-www/vtiger/modules/Help/Forms.php
-www/vtiger/modules/Help/index.php
-www/vtiger/modules/Administration/language/en_us.lang.php
-www/vtiger/modules/Administration/index.php
-www/vtiger/modules/Administration/Forms.php
-www/vtiger/modules/Migration/language/en_us.lang.php
-www/vtiger/modules/Migration/ModifyDatabase/deleteCustomFields.php
-www/vtiger/modules/Migration/ModifyDatabase/rename_tables.php
-www/vtiger/modules/Migration/ModifyDatabase/MigrationInfo.php
-www/vtiger/modules/Migration/ModifyDatabase/42P2_to_50.php
-www/vtiger/modules/Migration/502DBChanges.php
-www/vtiger/modules/Migration/MigrationCheck.php
-www/vtiger/modules/Migration/MigrationStep1.php
-www/vtiger/modules/Migration/Migration.php
-www/vtiger/modules/Migration/updateCurrency.php
-www/vtiger/modules/Yahoo/images/ym.gif
-www/vtiger/modules/Yahoo/language/en_us.lang.php
-www/vtiger/logs/todel.txt.txt
-www/vtiger/user_privileges/enable_backup.php
-www/vtiger/user_privileges/default_module_view.php
-www/vtiger/user_privileges/index.html
-www/vtiger/user_privileges/audit_trail.php
-www/vtiger/storage/vtiger.txt
-www/vtiger/log4php/layouts/LoggerLayoutTTCC.php
-www/vtiger/log4php/layouts/LoggerXmlLayout.php
-www/vtiger/log4php/layouts/LoggerLayoutHtml.php
-www/vtiger/log4php/layouts/LoggerLayoutSimple.php
-www/vtiger/log4php/layouts/LoggerPatternLayout.php
-www/vtiger/log4php/or/LoggerDefaultRenderer.php
-www/vtiger/log4php/or/LoggerRendererMap.php
-www/vtiger/log4php/or/LoggerObjectRenderer.php
-www/vtiger/log4php/spi/LoggerLoggingEvent.php
-www/vtiger/log4php/spi/LoggerLocationInfo.php
-www/vtiger/log4php/spi/LoggerConfigurator.php
-www/vtiger/log4php/spi/LoggerFactory.php
-www/vtiger/log4php/spi/LoggerFilter.php
-www/vtiger/log4php/xml/LoggerDOMConfigurator.php
-www/vtiger/log4php/helpers/LoggerOptionConverter.php
-www/vtiger/log4php/helpers/LoggerPatternConverter.php
-www/vtiger/log4php/helpers/LoggerFormattingInfo.php
-www/vtiger/log4php/helpers/LoggerPatternParser.php
-www/vtiger/log4php/helpers/LoggerTransform.php
-www/vtiger/log4php/appenders/LoggerAppenderDb.php
-www/vtiger/log4php/appenders/LoggerAppenderMailEvent.php
-www/vtiger/log4php/appenders/LoggerAppenderNull.php
-www/vtiger/log4php/appenders/LoggerAppenderConsole.php
-www/vtiger/log4php/appenders/LoggerAppenderFile.php
-www/vtiger/log4php/appenders/LoggerAppenderPhp.php
-www/vtiger/log4php/appenders/LoggerAppenderSyslog.php
-www/vtiger/log4php/appenders/LoggerAppenderSocket.php
-www/vtiger/log4php/appenders/LoggerAppenderEcho.php
-www/vtiger/log4php/appenders/LoggerAppenderDailyFile.php
-www/vtiger/log4php/appenders/LoggerAppenderMail.php
-www/vtiger/log4php/appenders/LoggerAppenderRollingFile.php
-www/vtiger/log4php/config/LoggerPropertyGetter.php
-www/vtiger/log4php/config/LoggerPropertySetter.php
-www/vtiger/log4php/varia/LoggerLevelRangeFilter.php
-www/vtiger/log4php/varia/LoggerLevelMatchFilter.php
-www/vtiger/log4php/varia/LoggerStringMatchFilter.php
-www/vtiger/log4php/varia/LoggerDenyAllFilter.php
-www/vtiger/log4php/LoggerRoot.php
-www/vtiger/log4php/LoggerManager.php
-www/vtiger/log4php/LoggerNDC.php
-www/vtiger/log4php/Logger.php
-www/vtiger/log4php/LoggerAppender.php
-www/vtiger/log4php/LoggerLog.php
-www/vtiger/log4php/LoggerPropertyConfigurator.php
-www/vtiger/log4php/LoggerDefaultCategoryFactory.php
-www/vtiger/log4php/LoggerLevel.php
-www/vtiger/log4php/LoggerHierarchy.php
-www/vtiger/log4php/LoggerLayout.php
-www/vtiger/log4php/LoggerCategory.php
-www/vtiger/log4php/LoggerMDC.php
-www/vtiger/log4php/LoggerBasicConfigurator.php
-www/vtiger/log4php/LoggerAppenderSkeleton.php
-www/vtiger/class_http/image_cache.php
-www/vtiger/class_http/class_http.php
-www/vtiger/cache/upload/index.html
-www/vtiger/cache/import/index.html
-www/vtiger/cache/images/index.html
-www/vtiger/cache/index.html
-www/vtiger/adodb/xsl/remove-0.3.xsl
-www/vtiger/adodb/xsl/convert-0.1-0.2.xsl
-www/vtiger/adodb/xsl/remove-0.2.xsl
-www/vtiger/adodb/xsl/convert-0.2-0.1.xsl
-www/vtiger/adodb/xsl/convert-0.2-0.3.xsl
-www/vtiger/adodb/xsl/convert-0.1-0.3.xsl
-www/vtiger/adodb/drivers/adodb-mssql.inc.php
-www/vtiger/adodb/drivers/adodb-firebird.inc.php
-www/vtiger/adodb/drivers/adodb-mysql.inc.php
-www/vtiger/adodb/drivers/adodb-informix.inc.php
-www/vtiger/adodb/drivers/adodb-informix72.inc.php
-www/vtiger/adodb/drivers/adodb-borland_ibase.inc.php
-www/vtiger/adodb/drivers/adodb-csv.inc.php
-www/vtiger/adodb/drivers/adodb-postgres8.inc.php
-www/vtiger/adodb/drivers/adodb-ado_access.inc.php
-www/vtiger/adodb/drivers/adodb-mssqlpo.inc.php
-www/vtiger/adodb/drivers/adodb-odbc_mssql.inc.php
-www/vtiger/adodb/drivers/adodb-sqlanywhere.inc.php
-www/vtiger/adodb/drivers/adodb-pdo_mssql.inc.php
-www/vtiger/adodb/drivers/adodb-pdo_pgsql.inc.php
-www/vtiger/adodb/drivers/adodb-sqlite.inc.php
-www/vtiger/adodb/drivers/adodb-postgres64.inc.php
-www/vtiger/adodb/drivers/adodb-mysqlt.inc.php
-www/vtiger/adodb/drivers/adodb-sapdb.inc.php
-www/vtiger/adodb/drivers/adodb-pdo_oci.inc.php
-www/vtiger/adodb/drivers/adodb-fbsql.inc.php
-www/vtiger/adodb/drivers/adodb-mysqli.inc.php
-www/vtiger/adodb/drivers/adodb-ldap.inc.php
-www/vtiger/adodb/drivers/adodb-pdo_mysql.inc.php
-www/vtiger/adodb/drivers/adodb-sybase.inc.php
-www/vtiger/adodb/drivers/adodb-db2.inc.php
-www/vtiger/adodb/drivers/adodb-pdo.inc.php
-www/vtiger/adodb/drivers/adodb-odbtp.inc.php
-www/vtiger/adodb/drivers/adodb-postgres7.inc.php
-www/vtiger/adodb/drivers/adodb-odbc_oracle.inc.php
-www/vtiger/adodb/drivers/adodb-ado_mssql.inc.php
-www/vtiger/adodb/drivers/adodb-odbc_db2.inc.php
-www/vtiger/adodb/drivers/adodb-odbtp_unicode.inc.php
-www/vtiger/adodb/drivers/adodb-proxy.inc.php
-www/vtiger/adodb/drivers/adodb-vfp.inc.php
-www/vtiger/adodb/drivers/adodb-sybase_ase.inc.php
-www/vtiger/adodb/drivers/adodb-oci8.inc.php
-www/vtiger/adodb/drivers/adodb-oracle.inc.php
-www/vtiger/adodb/drivers/adodb-ado5.inc.php
-www/vtiger/adodb/drivers/adodb-ibase.inc.php
-www/vtiger/adodb/drivers/adodb-odbc.inc.php
-www/vtiger/adodb/drivers/adodb-oci805.inc.php
-www/vtiger/adodb/drivers/adodb-netezza.inc.php
-www/vtiger/adodb/drivers/adodb-oci8po.inc.php
-www/vtiger/adodb/drivers/adodb-access.inc.php
-www/vtiger/adodb/drivers/adodb-postgres.inc.php
-www/vtiger/adodb/drivers/adodb-sqlitepo.inc.php
-www/vtiger/adodb/drivers/adodb-ado.inc.php
-www/vtiger/adodb/contrib/toxmlrpc.inc.php
-www/vtiger/adodb/perf/perf-db2.inc.php
-www/vtiger/adodb/perf/perf-postgres.inc.php
-www/vtiger/adodb/perf/perf-mssql.inc.php
-www/vtiger/adodb/perf/perf-informix.inc.php
-www/vtiger/adodb/perf/perf-mysql.inc.php
-www/vtiger/adodb/perf/perf-oci8.inc.php
-www/vtiger/adodb/lang/adodb-uk1251.inc.php
-www/vtiger/adodb/lang/adodb-bgutf8.inc.php
-www/vtiger/adodb/lang/adodb-cn.inc.php
-www/vtiger/adodb/lang/adodb-hu.inc.php
-www/vtiger/adodb/lang/adodb-da.inc.php
-www/vtiger/adodb/lang/adodb-bg.inc.php
-www/vtiger/adodb/lang/adodb-de.inc.php
-www/vtiger/adodb/lang/adodb-ar.inc.php
-www/vtiger/adodb/lang/adodb-es.inc.php
-www/vtiger/adodb/lang/adodb-it.inc.php
-www/vtiger/adodb/lang/adodb-esperanto.inc.php
-www/vtiger/adodb/lang/adodb-ca.inc.php
-www/vtiger/adodb/lang/adodb-nl.inc.php
-www/vtiger/adodb/lang/adodb-ru1251.inc.php
-www/vtiger/adodb/lang/adodb-fr.inc.php
-www/vtiger/adodb/lang/adodb-en.inc.php
-www/vtiger/adodb/lang/adodb-pt-br.inc.php
-www/vtiger/adodb/lang/adodb-sv.inc.php
-www/vtiger/adodb/lang/adodb-cz.inc.php
-www/vtiger/adodb/lang/adodb-ro.inc.php
-www/vtiger/adodb/lang/adodb-pl.inc.php
-www/vtiger/adodb/session/old/adodb-session.php
-www/vtiger/adodb/session/old/adodb-session-clob.php
-www/vtiger/adodb/session/old/crypt.inc.php
-www/vtiger/adodb/session/old/adodb-cryptsession.php
-www/vtiger/adodb/session/adodb-encrypt-mcrypt.php
-www/vtiger/adodb/session/adodb-encrypt-md5.php
-www/vtiger/adodb/session/adodb-compress-bzip2.php
-www/vtiger/adodb/session/adodb-encrypt-secret.php
-www/vtiger/adodb/session/adodb-session-clob.php
-www/vtiger/adodb/session/adodb-cryptsession.php
-www/vtiger/adodb/session/adodb-session.php
-www/vtiger/adodb/session/crypt.inc.php
-www/vtiger/adodb/session/adodb-encrypt-sha1.php
-www/vtiger/adodb/session/adodb-compress-gzip.php
-www/vtiger/adodb/tests/testmssql.php
-www/vtiger/adodb/tests/testpear.php
-www/vtiger/adodb/tests/test-active-recs2.php
-www/vtiger/adodb/tests/test5.php
-www/vtiger/adodb/tests/test2.php
-www/vtiger/adodb/tests/testoci8cursor.php
-www/vtiger/adodb/tests/testoci8.php
-www/vtiger/adodb/tests/test-php5.php
-www/vtiger/adodb/tests/test_rs_array.php
-www/vtiger/adodb/tests/benchmark.php
-www/vtiger/adodb/tests/client.php
-www/vtiger/adodb/tests/test4.php
-www/vtiger/adodb/tests/test-datadict.php
-www/vtiger/adodb/tests/testpaging.php
-www/vtiger/adodb/tests/test-xmlschema.php
-www/vtiger/adodb/tests/testgenid.php
-www/vtiger/adodb/tests/test-perf.php
-www/vtiger/adodb/tests/tmssql.php
-www/vtiger/adodb/tests/testcache.php
-www/vtiger/adodb/tests/pdo.php
-www/vtiger/adodb/tests/test3.php
-www/vtiger/adodb/tests/testdatabases.inc.php
-www/vtiger/adodb/tests/testsessions.php
-www/vtiger/adodb/tests/test-pgblob.php
-www/vtiger/adodb/tests/test.php
-www/vtiger/adodb/tests/test-active-record.php
-www/vtiger/adodb/tests/time.php
-www/vtiger/adodb/pear/Auth/Container/ADOdb.php
-www/vtiger/adodb/datadict/datadict-ibase.inc.php
-www/vtiger/adodb/datadict/datadict-mssql.inc.php
-www/vtiger/adodb/datadict/datadict-firebird.inc.php
-www/vtiger/adodb/datadict/datadict-access.inc.php
-www/vtiger/adodb/datadict/datadict-mysql.inc.php
-www/vtiger/adodb/datadict/datadict-db2.inc.php
-www/vtiger/adodb/datadict/datadict-oci8.inc.php
-www/vtiger/adodb/datadict/datadict-sapdb.inc.php
-www/vtiger/adodb/datadict/datadict-sybase.inc.php
-www/vtiger/adodb/datadict/datadict-postgres.inc.php
-www/vtiger/adodb/datadict/datadict-generic.inc.php
-www/vtiger/adodb/datadict/datadict-informix.inc.php
-www/vtiger/adodb/adodb-iterator.inc.php
-www/vtiger/adodb/adodb-datadict.inc.php
-www/vtiger/adodb/adodb-perf.inc.php
-www/vtiger/adodb/adodb-active-record.inc.php
-www/vtiger/adodb/adodb-pager.inc.php
-www/vtiger/adodb/adodb-xmlschema.inc.php
-www/vtiger/adodb/adodb-pear.inc.php
-www/vtiger/adodb/adodb-exceptions.inc.php
-www/vtiger/adodb/adodb-csvlib.inc.php
-www/vtiger/adodb/adodb-errorhandler.inc.php
-www/vtiger/adodb/server.php
-www/vtiger/adodb/toexport.inc.php
-www/vtiger/adodb/adodb-time.inc.php
-www/vtiger/adodb/adodb-errorpear.inc.php
-www/vtiger/adodb/adodb-xmlschema03.inc.php
-www/vtiger/adodb/rsfilter.inc.php
-www/vtiger/adodb/adodb.inc.php
-www/vtiger/adodb/tohtml.inc.php
-www/vtiger/adodb/adodb-lib.inc.php
-www/vtiger/adodb/adodb-php4.inc.php
-www/vtiger/adodb/adodb-error.inc.php
-www/vtiger/adodb/pivottable.inc.php
-www/vtiger/cron/intimateTaskStatus.bat
-www/vtiger/cron/class.smtp.php
-www/vtiger/cron/jobstartwindows.bat
-www/vtiger/cron/output.txt
-www/vtiger/cron/executecron.sh
-www/vtiger/cron/intimateTaskStatus.php
-www/vtiger/cron/send_mail.php
-www/vtiger/cron/sendreminder.sh
-www/vtiger/cron/class.phpmailer.php
-www/vtiger/cron/schtasks.exe
-www/vtiger/Smarty/configs/index.html
-www/vtiger/Smarty/libs/plugins/modifier.truncate.php
-www/vtiger/Smarty/libs/plugins/modifier.escape.php
-www/vtiger/Smarty/libs/plugins/modifier.regex_replace.php
-www/vtiger/Smarty/libs/plugins/block.textformat.php
-www/vtiger/Smarty/libs/plugins/function.debug.php
-www/vtiger/Smarty/libs/plugins/function.eval.php
-www/vtiger/Smarty/libs/plugins/function.html_radios.php
-www/vtiger/Smarty/libs/plugins/function.mailto.php
-www/vtiger/Smarty/libs/plugins/modifier.date_format.php
-www/vtiger/Smarty/libs/plugins/function.fetch.php
-www/vtiger/Smarty/libs/plugins/shared.make_timestamp.php
-www/vtiger/Smarty/libs/plugins/function.html_select_time.php
-www/vtiger/Smarty/libs/plugins/modifier.string_format.php
-www/vtiger/Smarty/libs/plugins/function.html_options.php
-www/vtiger/Smarty/libs/plugins/modifier.indent.php
-www/vtiger/Smarty/libs/plugins/modifier.count_paragraphs.php
-www/vtiger/Smarty/libs/plugins/modifier.replace.php
-www/vtiger/Smarty/libs/plugins/modifier.upper.php
-www/vtiger/Smarty/libs/plugins/modifier.default.php
-www/vtiger/Smarty/libs/plugins/function.html_image.php
-www/vtiger/Smarty/libs/plugins/function.config_load.php
-www/vtiger/Smarty/libs/plugins/modifier.wordwrap.php
-www/vtiger/Smarty/libs/plugins/function.html_checkboxes.php
-www/vtiger/Smarty/libs/plugins/function.html_table.php
-www/vtiger/Smarty/libs/plugins/function.popup_init.php
-www/vtiger/Smarty/libs/plugins/function.cycle.php
-www/vtiger/Smarty/libs/plugins/function.math.php
-www/vtiger/Smarty/libs/plugins/modifier.strip_tags.php
-www/vtiger/Smarty/libs/plugins/outputfilter.trimwhitespace.php
-www/vtiger/Smarty/libs/plugins/function.html_select_date.php
-www/vtiger/Smarty/libs/plugins/shared.escape_special_chars.php
-www/vtiger/Smarty/libs/plugins/modifier.nl2br.php
-www/vtiger/Smarty/libs/plugins/modifier.strip.php
-www/vtiger/Smarty/libs/plugins/modifier.spacify.php
-www/vtiger/Smarty/libs/plugins/modifier.capitalize.php
-www/vtiger/Smarty/libs/plugins/function.counter.php
-www/vtiger/Smarty/libs/plugins/compiler.assign.php
-www/vtiger/Smarty/libs/plugins/function.assign_debug_info.php
-www/vtiger/Smarty/libs/plugins/modifier.cat.php
-www/vtiger/Smarty/libs/plugins/modifier.lower.php
-www/vtiger/Smarty/libs/plugins/modifier.count_words.php
-www/vtiger/Smarty/libs/plugins/modifier.count_characters.php
-www/vtiger/Smarty/libs/plugins/modifier.debug_print_var.php
-www/vtiger/Smarty/libs/plugins/modifier.count_sentences.php
-www/vtiger/Smarty/libs/plugins/function.popup.php
-www/vtiger/Smarty/libs/internals/core.get_microtime.php
-www/vtiger/Smarty/libs/internals/core.rm_auto.php
-www/vtiger/Smarty/libs/internals/core.process_compiled_include.php
-www/vtiger/Smarty/libs/internals/core.display_debug_console.php
-www/vtiger/Smarty/libs/internals/core.load_resource_plugin.php
-www/vtiger/Smarty/libs/internals/core.rmdir.php
-www/vtiger/Smarty/libs/internals/core.get_php_resource.php
-www/vtiger/Smarty/libs/internals/core.smarty_include_php.php
-www/vtiger/Smarty/libs/internals/core.write_cache_file.php
-www/vtiger/Smarty/libs/internals/core.assign_smarty_interface.php
-www/vtiger/Smarty/libs/internals/core.assemble_plugin_filepath.php
-www/vtiger/Smarty/libs/internals/core.is_trusted.php
-www/vtiger/Smarty/libs/internals/core.write_compiled_resource.php
-www/vtiger/Smarty/libs/internals/core.read_cache_file.php
-www/vtiger/Smarty/libs/internals/core.write_compiled_include.php
-www/vtiger/Smarty/libs/internals/core.load_plugins.php
-www/vtiger/Smarty/libs/internals/core.run_insert_handler.php
-www/vtiger/Smarty/libs/internals/core.process_cached_inserts.php
-www/vtiger/Smarty/libs/internals/core.get_include_path.php
-www/vtiger/Smarty/libs/internals/core.create_dir_structure.php
-www/vtiger/Smarty/libs/internals/core.write_file.php
-www/vtiger/Smarty/libs/internals/core.is_secure.php
-www/vtiger/Smarty/libs/Smarty_Compiler.class.php
-www/vtiger/Smarty/libs/Config_File.class.php
-www/vtiger/Smarty/libs/debug.tpl
-www/vtiger/Smarty/libs/Smarty.class.php
-www/vtiger/Smarty/cache/index.html
-www/vtiger/Smarty/templates/Settings/EmailConfig.tpl
-www/vtiger/Smarty/templates/Settings/InventoryNotify.tpl
-www/vtiger/Smarty/templates/Settings/TaxConfig.tpl
-www/vtiger/Smarty/templates/Settings/InventoryNotifyContents.tpl
-www/vtiger/Smarty/templates/Settings/EmailNotification.tpl
-www/vtiger/Smarty/templates/Settings/PickListContents.tpl
-www/vtiger/Smarty/templates/Settings/EmailNotificationContents.tpl
-www/vtiger/Smarty/templates/Settings/BackupServer.tpl
-www/vtiger/Smarty/templates/Settings/ModuleOwnersContents.tpl
-www/vtiger/Smarty/templates/Settings/EditCompanyInfo.tpl
-www/vtiger/Smarty/templates/Settings/PickList.tpl
-www/vtiger/Smarty/templates/Settings/EditEmailNotification.tpl
-www/vtiger/Smarty/templates/Settings/CompanyInfo.tpl
-www/vtiger/Smarty/templates/Settings/BackupServerContents.tpl
-www/vtiger/Smarty/templates/Settings/ModuleOwners.tpl
-www/vtiger/Smarty/templates/Settings/ProxyServer.tpl
-www/vtiger/Smarty/templates/Settings/EditInventoryNotify.tpl
-www/vtiger/Smarty/templates/Settings/InventoryTerms.tpl
-www/vtiger/Smarty/templates/Settings/EditPickList.tpl
-www/vtiger/Smarty/templates/Settings/Announcements.tpl
-www/vtiger/Smarty/templates/Inventory/ProductDetailsEditView.tpl
-www/vtiger/Smarty/templates/Inventory/InventoryActions.tpl
-www/vtiger/Smarty/templates/Inventory/InventoryCreateView.tpl
-www/vtiger/Smarty/templates/Inventory/InventoryDetailView.tpl
-www/vtiger/Smarty/templates/Inventory/ProductDetails.tpl
-www/vtiger/Smarty/templates/Inventory/InventoryEditView.tpl
-www/vtiger/Smarty/templates/PopupContents.tpl
-www/vtiger/Smarty/templates/Emails.tpl
-www/vtiger/Smarty/templates/MySitesManage.tpl
-www/vtiger/Smarty/templates/DisplayFields.tpl
-www/vtiger/Smarty/templates/MySitesContents.tpl
-www/vtiger/Smarty/templates/DetailViewUI.tpl
-www/vtiger/Smarty/templates/AuditTrailList.tpl
-www/vtiger/Smarty/templates/Importerror.tpl
-www/vtiger/Smarty/templates/FieldOrderindex.tpl
-www/vtiger/Smarty/templates/ShowHistoryContents.tpl
-www/vtiger/Smarty/templates/RssFeeds.tpl
-www/vtiger/Smarty/templates/CreateWordTemplate.tpl
-www/vtiger/Smarty/templates/SysInformation.tpl
-www/vtiger/Smarty/templates/UserListViewContents.tpl
-www/vtiger/Smarty/templates/PickListindex.tpl
-www/vtiger/Smarty/templates/RoleTree.tpl
-www/vtiger/Smarty/templates/ListEmailTemplates.tpl
-www/vtiger/Smarty/templates/CumulStatistics.tpl
-www/vtiger/Smarty/templates/CreateEmailTemplate.tpl
-www/vtiger/Smarty/templates/CreateProfile.tpl
-www/vtiger/Smarty/templates/ReportColumnsTotal.tpl
-www/vtiger/Smarty/templates/RoleEditView.tpl
-www/vtiger/Smarty/templates/RolePopup.tpl
-www/vtiger/Smarty/templates/ListWordTemplates.tpl
-www/vtiger/Smarty/templates/RelatedListNew.tpl
-www/vtiger/Smarty/templates/EditViewHidden.tpl
-www/vtiger/Smarty/templates/FieldAccess.tpl
-www/vtiger/Smarty/templates/DeleteRole.tpl
-www/vtiger/Smarty/templates/ReportRunContents.tpl
-www/vtiger/Smarty/templates/CurrencyDetailView.tpl
-www/vtiger/Smarty/templates/CustomView.tpl
-www/vtiger/Smarty/templates/ListRoles.tpl
-www/vtiger/Smarty/templates/ActivityDetailView.tpl
-www/vtiger/Smarty/templates/EmailContents.tpl
-www/vtiger/Smarty/templates/DetailViewFields.tpl
-www/vtiger/Smarty/templates/DetailView.tpl
-www/vtiger/Smarty/templates/EmailDetailView.tpl
-www/vtiger/Smarty/templates/upcomingActivities.tpl
-www/vtiger/Smarty/templates/CustomFieldEntries.tpl
-www/vtiger/Smarty/templates/Reports.tpl
-www/vtiger/Smarty/templates/ImportMap.tpl
-www/vtiger/Smarty/templates/Buttons_List.tpl
-www/vtiger/Smarty/templates/ListViewEntries.tpl
-www/vtiger/Smarty/templates/DetailViewEmailTemplate.tpl
-www/vtiger/Smarty/templates/CurrencyEditView.tpl
-www/vtiger/Smarty/templates/Header.tpl
-www/vtiger/Smarty/templates/UserGroups.tpl
-www/vtiger/Smarty/templates/ReportsCustomize.tpl
-www/vtiger/Smarty/templates/AddProductToPriceBooks.tpl
-www/vtiger/Smarty/templates/ReportRun.tpl
-www/vtiger/Smarty/templates/salesEditView.tpl
-www/vtiger/Smarty/templates/RelatedListContents.tpl
-www/vtiger/Smarty/templates/Calculator.tpl
-www/vtiger/Smarty/templates/OrgSharingEditView.tpl
-www/vtiger/Smarty/templates/EmailDetails.tpl
-www/vtiger/Smarty/templates/MySites.tpl
-www/vtiger/Smarty/templates/ShowAuditTrailContents.tpl
-www/vtiger/Smarty/templates/ReportGrouping.tpl
-www/vtiger/Smarty/templates/MigrationStep1.tpl
-www/vtiger/Smarty/templates/UserProfileList.tpl
-www/vtiger/Smarty/templates/ReportsStep1.tpl
-www/vtiger/Smarty/templates/pendingActivities.tpl
-www/vtiger/Smarty/templates/loginheader.tpl
-www/vtiger/Smarty/templates/Clock.tpl
-www/vtiger/Smarty/templates/GroupDetailview.tpl
-www/vtiger/Smarty/templates/ImportStep2.tpl
-www/vtiger/Smarty/templates/ListLeadCustomFieldMapping.tpl
-www/vtiger/Smarty/templates/UserEditView.tpl
-www/vtiger/Smarty/templates/DetailViewHidden.tpl
-www/vtiger/Smarty/templates/ListView.tpl
-www/vtiger/Smarty/templates/ReportContents.tpl
-www/vtiger/Smarty/templates/CustomFieldMapping.tpl
-www/vtiger/Smarty/templates/Rss.tpl
-www/vtiger/Smarty/templates/GlobalListView.tpl
-www/vtiger/Smarty/templates/CurrencyListViewEntries.tpl
-www/vtiger/Smarty/templates/TagCloudDisplay.tpl
-www/vtiger/Smarty/templates/AddProductsToPriceBook.tpl
-www/vtiger/Smarty/templates/ActivityEditView.tpl
-www/vtiger/Smarty/templates/UserListView.tpl
-www/vtiger/Smarty/templates/SetMenu.tpl
-www/vtiger/Smarty/templates/CurrencyListView.tpl
-www/vtiger/Smarty/templates/Organizationindex.tpl
-www/vtiger/Smarty/templates/ReportFilters.tpl
-www/vtiger/Smarty/templates/ListLoginHistory.tpl
-www/vtiger/Smarty/templates/ListGroup.tpl
-www/vtiger/Smarty/templates/EditProfile.tpl
-www/vtiger/Smarty/templates/DefModuleView.tpl
-www/vtiger/Smarty/templates/Buttons_List1.tpl
-www/vtiger/Smarty/templates/ActivityListView.tpl
-www/vtiger/Smarty/templates/FieldAccessindex.tpl
-www/vtiger/Smarty/templates/ComposeEmail.tpl
-www/vtiger/Smarty/templates/RoleDetailView.tpl
-www/vtiger/Smarty/templates/ReportsType.tpl
-www/vtiger/Smarty/templates/ReportColumns.tpl
-www/vtiger/Smarty/templates/Settings.tpl
-www/vtiger/Smarty/templates/AddMailAccount.tpl
-www/vtiger/Smarty/templates/CustomFieldList.tpl
-www/vtiger/Smarty/templates/PrintReport.tpl
-www/vtiger/Smarty/templates/ShowAuditTrail.tpl
-www/vtiger/Smarty/templates/Webmails.tpl
-www/vtiger/Smarty/templates/QuickCreateHidden.tpl
-www/vtiger/Smarty/templates/GroupEditView.tpl
-www/vtiger/Smarty/templates/ProfileDetailView.tpl
-www/vtiger/Smarty/templates/SelectEmail.tpl
-www/vtiger/Smarty/templates/HomePage.tpl
-www/vtiger/Smarty/templates/CreateView.tpl
-www/vtiger/Smarty/templates/Popup.tpl
-www/vtiger/Smarty/templates/RelatedListsHidden.tpl
-www/vtiger/Smarty/templates/ReportsStep0.tpl
-www/vtiger/Smarty/templates/OrgSharingDetailView.tpl
-www/vtiger/Smarty/templates/ImportStep1.tpl
-www/vtiger/Smarty/templates/RelatedLists.tpl
-www/vtiger/Smarty/templates/QuickCreate.tpl
-www/vtiger/Smarty/templates/UserDetailView.tpl
-www/vtiger/Smarty/misc/smarty_icon.README
-www/vtiger/Smarty/misc/smarty_icon.gif
-www/vtiger/Smarty/templates_c/vtigercrm.txt
-www/vtiger/Smarty/COPYING.lib
-www/vtiger/jscalendar/lang/calendar-pt.js
-www/vtiger/jscalendar/lang/calendar-da.js
-www/vtiger/jscalendar/lang/calendar-hr-utf8.js
-www/vtiger/jscalendar/lang/calendar-du.js
-www/vtiger/jscalendar/lang/calendar-sv.js
-www/vtiger/jscalendar/lang/calendar-si.js
-www/vtiger/jscalendar/lang/calendar-lt.js
-www/vtiger/jscalendar/lang/calendar-tr.js
-www/vtiger/jscalendar/lang/calendar-it.js
-www/vtiger/jscalendar/lang/calendar-pl-utf8.js
-www/vtiger/jscalendar/lang/calendar-sp.js
-www/vtiger/jscalendar/lang/calendar-hr.js
-www/vtiger/jscalendar/lang/calendar-br.js
-www/vtiger/jscalendar/lang/calendar-jp.js
-www/vtiger/jscalendar/lang/calendar-nl.js
-www/vtiger/jscalendar/lang/calendar-ru.js
-www/vtiger/jscalendar/lang/calendar-el.js
-www/vtiger/jscalendar/lang/calendar-ca.js
-www/vtiger/jscalendar/lang/calendar-es.js
-www/vtiger/jscalendar/lang/calendar-ro.js
-www/vtiger/jscalendar/lang/calendar-ko-utf8.js
-www/vtiger/jscalendar/lang/calendar-sk.js
-www/vtiger/jscalendar/lang/calendar-cs-win.js
-www/vtiger/jscalendar/lang/calendar-fi.js
-www/vtiger/jscalendar/lang/calendar-de.js
-www/vtiger/jscalendar/lang/calendar-pl.js
-www/vtiger/jscalendar/lang/calendar-en.js
-www/vtiger/jscalendar/lang/calendar-zh.js
-www/vtiger/jscalendar/lang/calendar-hu.js
-www/vtiger/jscalendar/lang/calendar-lt-utf8.js
-www/vtiger/jscalendar/lang/calendar-no.js
-www/vtiger/jscalendar/lang/calendar-ko.js
-www/vtiger/jscalendar/lang/calendar-af.js
-www/vtiger/jscalendar/lang/calendar-fr.js
-www/vtiger/jscalendar/menuarrow2.gif
-www/vtiger/jscalendar/calendar-win2k-cold-1.css
-www/vtiger/jscalendar/menuarrow.gif
-www/vtiger/jscalendar/calendar-setup.js
-www/vtiger/jscalendar/img.gif
-www/vtiger/jscalendar/calendar.js
-www/vtiger/soap/thunderbirdplugin.php
-www/vtiger/soap/wordplugin.php
-www/vtiger/soap/firefoxtoolbar.php
-www/vtiger/soap/customerportal.php
-www/vtiger/soap/webforms.php
-www/vtiger/soap/vtigerolservice.php
-www/vtiger/install/2setConfig.php
-www/vtiger/install/5createTables.inc.php
-www/vtiger/install/4createConfigFile.php
-www/vtiger/install/5createTables.php
-www/vtiger/install/0welcome.php
-www/vtiger/install/populateSeedData.php
-www/vtiger/install/1checkSystem.php
-www/vtiger/install/3confirmConfig.php
-www/vtiger/schema/DatabaseSchema.xml
-www/vtiger/include/js/dtlviewajax.js
-www/vtiger/include/js/Mail.js
-www/vtiger/include/js/prototype.js
-www/vtiger/include/js/reflection.js
-www/vtiger/include/js/ListView.js
-www/vtiger/include/js/general.js
-www/vtiger/include/js/search.js
-www/vtiger/include/js/menu.js
-www/vtiger/include/js/thumbnail.js
-www/vtiger/include/js/popup.js
-www/vtiger/include/js/ColorPicker2.js
-www/vtiger/include/js/ajax.js
-www/vtiger/include/js/clock.js
-www/vtiger/include/js/QuickCreate.js
-www/vtiger/include/js/Inventory.js
-www/vtiger/include/js/Merge.js
-www/vtiger/include/js/slider.js
-www/vtiger/include/js/submenu.js
-www/vtiger/include/js/customview.js
-www/vtiger/include/js/smoothscroll.js
-www/vtiger/include/install/images/vtigercrm5.gif
-www/vtiger/include/install/images/loading.gif
-www/vtiger/include/install/images/confWizInstallCheck.gif
-www/vtiger/include/install/images/confWizConfirmSettings.gif
-www/vtiger/include/install/images/qcBg.gif
-www/vtiger/include/install/images/confWizSysConfig.gif
-www/vtiger/include/install/images/confWizFinish.gif
-www/vtiger/include/install/images/settingsSelUIBg.gif
-www/vtiger/include/install/images/tabUnSelectedBg.gif
-www/vtiger/include/install/images/trans.gif
-www/vtiger/include/install/images/cwBtnChange.gif
-www/vtiger/include/install/images/settingsMTBg.gif
-www/vtiger/include/install/images/cwBtnNext.gif
-www/vtiger/include/install/images/bottomGradient.gif
-www/vtiger/include/install/images/bottomShadow.jpg
-www/vtiger/include/install/images/topHeadBg.gif
-www/vtiger/include/install/images/pageBackground.gif
-www/vtiger/include/install/images/tabSelectedBg.gif
-www/vtiger/include/install/images/confWizConfFile.gif
-www/vtiger/include/install/images/cwBtnBack.gif
-www/vtiger/include/install/images/tabSeperatorBg.gif
-www/vtiger/include/install/images/cwBtnFinish.gif
-www/vtiger/include/install/images/confWizDbGeneration.gif
-www/vtiger/include/install/images/Thumbs.db
-www/vtiger/include/install/images/topInnerShadow.gif
-www/vtiger/include/install/images/start.jpg
-www/vtiger/include/install/images/configwizard.gif
-www/vtiger/include/install/images/welcome.gif
-www/vtiger/include/install/install.css
-www/vtiger/include/clock/Clock.php
-www/vtiger/include/php_writeexcel/class.writeexcel_format.inc.php
-www/vtiger/include/php_writeexcel/class.writeexcel_biffwriter.inc.php
-www/vtiger/include/php_writeexcel/class.writeexcel_formula.inc.php
-www/vtiger/include/php_writeexcel/functions.writeexcel_utility.inc.php
-www/vtiger/include/php_writeexcel/class.writeexcel_workbookbig.inc.php
-www/vtiger/include/php_writeexcel/class.writeexcel_worksheet.inc.php
-www/vtiger/include/php_writeexcel/class.writeexcel_olewriter.inc.php
-www/vtiger/include/php_writeexcel/LICENSE
-www/vtiger/include/php_writeexcel/class.writeexcel_workbook.inc.php
-www/vtiger/include/php_writeexcel/class.excel.php
-www/vtiger/include/fpdf/font/courier.php
-www/vtiger/include/fpdf/font/timesbi.php
-www/vtiger/include/fpdf/font/helveticab.php
-www/vtiger/include/fpdf/font/helveticabi.php
-www/vtiger/include/fpdf/font/timesi.php
-www/vtiger/include/fpdf/font/zapfdingbats.php
-www/vtiger/include/fpdf/font/timesb.php
-www/vtiger/include/fpdf/font/helvetica.php
-www/vtiger/include/fpdf/font/helveticai.php
-www/vtiger/include/fpdf/font/symbol.php
-www/vtiger/include/fpdf/font/times.php
-www/vtiger/include/fpdf/templates/body.php
-www/vtiger/include/fpdf/fpdf.css
-www/vtiger/include/fpdf/fpdf.php
-www/vtiger/include/fpdf/pdf.php
-www/vtiger/include/language/en_us.lang.php
-www/vtiger/include/scriptaculous/controls.js
-www/vtiger/include/scriptaculous/slider.js
-www/vtiger/include/scriptaculous/dragdrop.js
-www/vtiger/include/scriptaculous/unittest.js
-www/vtiger/include/scriptaculous/dom-drag.js
-www/vtiger/include/scriptaculous/prototype.js
-www/vtiger/include/scriptaculous/scriptaculous.js
-www/vtiger/include/scriptaculous/effects.js
-www/vtiger/include/scriptaculous/builder.js
-www/vtiger/include/database/PearDatabase.php
-www/vtiger/include/database/Postgres8.php
-www/vtiger/include/magpierss/extlib/Snoopy.class.inc
-www/vtiger/include/magpierss/rss_cache.inc
-www/vtiger/include/magpierss/rss_fetch.inc
-www/vtiger/include/magpierss/rss_parse.inc
-www/vtiger/include/magpierss/rss_utils.inc
-www/vtiger/include/nusoap/class.wsdl.php
-www/vtiger/include/nusoap/class.soap_transport_http.php
-www/vtiger/include/nusoap/class.xmlschema.php
-www/vtiger/include/nusoap/class.soap_server.php
-www/vtiger/include/nusoap/class.wsdlcache.php
-www/vtiger/include/nusoap/nusoap.php
-www/vtiger/include/nusoap/nusoapmime.php
-www/vtiger/include/nusoap/class.nusoap_base.php
-www/vtiger/include/nusoap/class.soap_val.php
-www/vtiger/include/nusoap/changelog
-www/vtiger/include/nusoap/class.soapclient.php
-www/vtiger/include/nusoap/class.soap_parser.php
-www/vtiger/include/nusoap/class.soap_fault.php
-www/vtiger/include/db_backup/backup.php
-www/vtiger/include/db_backup/ftp.php
-www/vtiger/include/calculator/Calc.php
-www/vtiger/include/calculator/calc.js
-www/vtiger/include/images/right_arc.gif
-www/vtiger/include/images/loginSIBottomRight.gif
-www/vtiger/include/images/loginBottomURL.gif
-www/vtiger/include/images/bgcolor.gif
-www/vtiger/include/images/loginSIBottomLeft.gif
-www/vtiger/include/images/vtigercrm_icon.ico
-www/vtiger/include/images/blank.gif
-www/vtiger/include/images/loginSITopLeft.gif
-www/vtiger/include/images/loginSITopRight.gif
-www/vtiger/include/images/noimage.gif
-www/vtiger/include/images/loginBg.gif
-www/vtiger/include/images/loginVtigerCRM.gif
-www/vtiger/include/images/loginAlpha.gif
-www/vtiger/include/images/loginBtnSignin.gif
-www/vtiger/include/images/loginTopShade.gif
-www/vtiger/include/images/loginBottomBg.gif
-www/vtiger/include/images/announ.gif
-www/vtiger/include/images/loginTopBg.gif
-www/vtiger/include/images/spacer.gif
-www/vtiger/include/utils/utils.php
-www/vtiger/include/utils/UserInfoUtil.php
-www/vtiger/include/utils/ExportUtils.php
-www/vtiger/include/utils/EditViewUtils.php
-www/vtiger/include/utils/RecurringType.php
-www/vtiger/include/utils/SearchUtils.php
-www/vtiger/include/utils/DeleteUtils.php
-www/vtiger/include/utils/ListViewUtils.php
-www/vtiger/include/utils/GetUserGroups.php
-www/vtiger/include/utils/InventoryUtils.php
-www/vtiger/include/utils/DetailViewUtils.php
-www/vtiger/include/utils/CommonUtils.php
-www/vtiger/include/utils/GetGroupUsers.php
-www/vtiger/include/utils/export.php
-www/vtiger/include/utils/GetParentGroups.php
-www/vtiger/include/utils/GraphUtils.php
-www/vtiger/include/freetag/freetag.class.php
-www/vtiger/include/freetag/license.txt
-www/vtiger/include/Ajax/TagCloud.php
-www/vtiger/include/Ajax/CommonAjax.php
-www/vtiger/include/fckeditor/editor/images/spacer.gif
-www/vtiger/include/fckeditor/editor/images/anchor.gif
-www/vtiger/include/fckeditor/editor/dialog/fck_image/fck_image_preview.html
-www/vtiger/include/fckeditor/editor/dialog/fck_image/fck_image.js
-www/vtiger/include/fckeditor/editor/dialog/common/images/reset.gif
-www/vtiger/include/fckeditor/editor/dialog/common/images/locked.gif
-www/vtiger/include/fckeditor/editor/dialog/common/images/unlocked.gif
-www/vtiger/include/fckeditor/editor/dialog/common/fcknumericfield.htc
-www/vtiger/include/fckeditor/editor/dialog/common/fck_dialog_common.js
-www/vtiger/include/fckeditor/editor/dialog/common/fck_dialog_common.css
-www/vtiger/include/fckeditor/editor/dialog/common/moz-bindings.xml
-www/vtiger/include/fckeditor/editor/dialog/fck_link/fck_link.js
-www/vtiger/include/fckeditor/editor/dialog/fck_universalkey/data.js
-www/vtiger/include/fckeditor/editor/dialog/fck_universalkey/diacritic.js
-www/vtiger/include/fckeditor/editor/dialog/fck_universalkey/multihexa.js
-www/vtiger/include/fckeditor/editor/dialog/fck_universalkey/dialogue.js
-www/vtiger/include/fckeditor/editor/dialog/fck_universalkey/00.gif
-www/vtiger/include/fckeditor/editor/dialog/fck_universalkey/keyboard_layout.gif
-www/vtiger/include/fckeditor/editor/dialog/fck_universalkey/fck_universalkey.css
-www/vtiger/include/fckeditor/editor/dialog/fck_select/fck_select.js
-www/vtiger/include/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html
-www/vtiger/include/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif
-www/vtiger/include/fckeditor/editor/dialog/fck_about/lgpl.html
-www/vtiger/include/fckeditor/editor/dialog/fck_about/logo_fredck.gif
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html
-www/vtiger/include/fckeditor/editor/dialog/fck_paste.html
-www/vtiger/include/fckeditor/editor/dialog/fck_image.html
-www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages.html
-www/vtiger/include/fckeditor/editor/dialog/fck_hiddenfield.html
-www/vtiger/include/fckeditor/editor/dialog/fck_table.html
-www/vtiger/include/fckeditor/editor/dialog/fck_source.html
-www/vtiger/include/fckeditor/editor/dialog/fck_listprop.html
-www/vtiger/include/fckeditor/editor/dialog/fck_about.html
-www/vtiger/include/fckeditor/editor/dialog/fck_smiley.html
-www/vtiger/include/fckeditor/editor/dialog/fck_docprops.html
-www/vtiger/include/fckeditor/editor/dialog/fck_find.html
-www/vtiger/include/fckeditor/editor/dialog/fck_form.html
-www/vtiger/include/fckeditor/editor/dialog/fck_radiobutton.html
-www/vtiger/include/fckeditor/editor/dialog/fck_textarea.html
-www/vtiger/include/fckeditor/editor/dialog/fck_template.html
-www/vtiger/include/fckeditor/editor/dialog/fck_select.html
-www/vtiger/include/fckeditor/editor/dialog/fck_link.html
-www/vtiger/include/fckeditor/editor/dialog/fck_colorselector.html
-www/vtiger/include/fckeditor/editor/dialog/fck_anchor.html
-www/vtiger/include/fckeditor/editor/dialog/fck_checkbox.html
-www/vtiger/include/fckeditor/editor/dialog/fck_replace.html
-www/vtiger/include/fckeditor/editor/dialog/fck_textfield.html
-www/vtiger/include/fckeditor/editor/dialog/fck_universalkey.html
-www/vtiger/include/fckeditor/editor/dialog/fck_specialchar.html
-www/vtiger/include/fckeditor/editor/dialog/fck_flash.html
-www/vtiger/include/fckeditor/editor/dialog/fck_tablecell.html
-www/vtiger/include/fckeditor/editor/dialog/fck_button.html
-www/vtiger/include/fckeditor/editor/skins/default/images/toolbar.collapse.gif
-www/vtiger/include/fckeditor/editor/skins/default/images/toolbar.end.gif
-www/vtiger/include/fckeditor/editor/skins/default/images/toolbar.expand.gif
-www/vtiger/include/fckeditor/editor/skins/default/images/toolbar.start.gif
-www/vtiger/include/fckeditor/editor/skins/default/images/toolbar.separator.gif
-www/vtiger/include/fckeditor/editor/skins/default/images/toolbar.arrowright.gif
-www/vtiger/include/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/tabledeleterows.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/insertunorderedlist.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/button.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/paste.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/undo.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/tableinsertcolumn.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/justifycenter.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/justifyleft.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/bulletedlist.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/textcolor.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/tabledeletecells.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/underline.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/bold.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/anchor.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/tableinsertcell.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/tablemergecells.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/replace.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/showtableborders.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/italic.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/templates.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/form.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/flash.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/preview.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/textarea.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/find.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/radio.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/image.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/justifyright.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/tabledeletecolumns.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/spellcheck.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/pagebreak.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/redo.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/docprops.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/tablecell.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/tablesplitcell.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/subscript.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/print.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/removeformat.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/specialchar.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/smiley.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/checkbox.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/table.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/about.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/unlink.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/insertorderedlist.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/indent.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/copy.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/bgcolor.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/showdetails.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/strikethrough.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/tableinsertrow.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/unorderedlist.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/pasteword.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/newpage.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/cut.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/imagebutton.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/select.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/selectall.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/numberedlist.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/justifyfull.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/textfield.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/universalkey.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/outdent.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/source.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/save.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/inserthorizontalrule.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/link.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/hiddenfield.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/pastetext.gif
-www/vtiger/include/fckeditor/editor/skins/default/toolbar/superscript.gif
-www/vtiger/include/fckeditor/editor/skins/default/fck_dialog.css
-www/vtiger/include/fckeditor/editor/skins/default/fck_editor.css
-www/vtiger/include/fckeditor/editor/skins/default/fck_contextmenu.css
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/insertunorderedlist.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/find.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/bulletedlist.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/unlink.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/justifyright.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/redo.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/indent.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/pagebreak.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/strikethrough.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/replace.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/tableinsertrow.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/unorderedlist.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/paste.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/pasteword.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/tablecell.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/subscript.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/preview.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/specialchar.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/select.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/copy.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/cut.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/textfield.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/justifycenter.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/tableinsertcolumn.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/docprops.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/showdetails.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/removeformat.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/tabledeleterows.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/flash.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/imagebutton.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/undo.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/button.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/radio.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/image.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/bgcolor.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/selectall.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/save.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/textarea.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/link.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/justifyfull.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/newpage.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/source.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/pastetext.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/hiddenfield.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/about.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/checkbox.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/outdent.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/numberedlist.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/superscript.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/tableinsertcell.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/universalkey.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/tabledeletecells.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/justifyleft.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/insertorderedlist.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/print.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/spellcheck.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/textcolor.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/inserthorizontalrule.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/table.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/bold.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/tabledeletecolumns.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/showtableborders.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/anchor.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/underline.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/tablesplitcell.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/smiley.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/form.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/tablemergecells.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/italic.gif
-www/vtiger/include/fckeditor/editor/skins/silver/toolbar/templates.gif
-www/vtiger/include/fckeditor/editor/skins/silver/images/toolbar.start.gif
-www/vtiger/include/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif
-www/vtiger/include/fckeditor/editor/skins/silver/images/toolbar.separator.gif
-www/vtiger/include/fckeditor/editor/skins/silver/images/toolbar.collapse.gif
-www/vtiger/include/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif
-www/vtiger/include/fckeditor/editor/skins/silver/images/toolbar.expand.gif
-www/vtiger/include/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif
-www/vtiger/include/fckeditor/editor/skins/silver/images/toolbar.end.gif
-www/vtiger/include/fckeditor/editor/skins/silver/fck_dialog.css
-www/vtiger/include/fckeditor/editor/skins/silver/fck_contextmenu.css
-www/vtiger/include/fckeditor/editor/skins/silver/fck_editor.css
-www/vtiger/include/fckeditor/editor/lang/sr-latn.js
-www/vtiger/include/fckeditor/editor/lang/mn.js
-www/vtiger/include/fckeditor/editor/lang/en-au.js
-www/vtiger/include/fckeditor/editor/lang/_getfontformat.html
-www/vtiger/include/fckeditor/editor/lang/ja.js
-www/vtiger/include/fckeditor/editor/lang/da.js
-www/vtiger/include/fckeditor/editor/lang/fcklanguagemanager.js
-www/vtiger/include/fckeditor/editor/lang/cs.js
-www/vtiger/include/fckeditor/editor/lang/sv.js
-www/vtiger/include/fckeditor/editor/lang/vi.js
-www/vtiger/include/fckeditor/editor/lang/lt.js
-www/vtiger/include/fckeditor/editor/lang/tr.js
-www/vtiger/include/fckeditor/editor/lang/it.js
-www/vtiger/include/fckeditor/editor/lang/pt-br.js
-www/vtiger/include/fckeditor/editor/lang/hr.js
-www/vtiger/include/fckeditor/editor/lang/he.js
-www/vtiger/include/fckeditor/editor/lang/nl.js
-www/vtiger/include/fckeditor/editor/lang/ru.js
-www/vtiger/include/fckeditor/editor/lang/el.js
-www/vtiger/include/fckeditor/editor/lang/fa.js
-www/vtiger/include/fckeditor/editor/lang/ca.js
-www/vtiger/include/fckeditor/editor/lang/es.js
-www/vtiger/include/fckeditor/editor/lang/bs.js
-www/vtiger/include/fckeditor/editor/lang/ro.js
-www/vtiger/include/fckeditor/editor/lang/fo.js
-www/vtiger/include/fckeditor/editor/lang/sk.js
-www/vtiger/include/fckeditor/editor/lang/lv.js
-www/vtiger/include/fckeditor/editor/lang/sr.js
-www/vtiger/include/fckeditor/editor/lang/et.js
-www/vtiger/include/fckeditor/editor/lang/fi.js
-www/vtiger/include/fckeditor/editor/lang/gr.js
-www/vtiger/include/fckeditor/editor/lang/ar.js
-www/vtiger/include/fckeditor/editor/lang/bg.js
-www/vtiger/include/fckeditor/editor/lang/_translationstatus.txt
-www/vtiger/include/fckeditor/editor/lang/sl.js
-www/vtiger/include/fckeditor/editor/lang/de.js
-www/vtiger/include/fckeditor/editor/lang/pl.js
-www/vtiger/include/fckeditor/editor/lang/zh-cn.js
-www/vtiger/include/fckeditor/editor/lang/en.js
-www/vtiger/include/fckeditor/editor/lang/zh.js
-www/vtiger/include/fckeditor/editor/lang/gl.js
-www/vtiger/include/fckeditor/editor/lang/th.js
-www/vtiger/include/fckeditor/editor/lang/hu.js
-www/vtiger/include/fckeditor/editor/lang/eu.js
-www/vtiger/include/fckeditor/editor/lang/ms.js
-www/vtiger/include/fckeditor/editor/lang/en-uk.js
-www/vtiger/include/fckeditor/editor/lang/no.js
-www/vtiger/include/fckeditor/editor/lang/ko.js
-www/vtiger/include/fckeditor/editor/lang/eo.js
-www/vtiger/include/fckeditor/editor/lang/uk.js
-www/vtiger/include/fckeditor/editor/lang/pt.js
-www/vtiger/include/fckeditor/editor/lang/hi.js
-www/vtiger/include/fckeditor/editor/lang/fr.js
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/asp/class_upload.asp
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/asp/io.asp
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/asp/util.asp
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/asp/basexml.asp
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/asp/commands.asp
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/asp/config.asp
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/php/commands.php
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/php/config.php
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/php/util.php
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/php/basexml.php
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/php/io.php
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/perl/connector.cgi
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/perl/io.pl
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/perl/upload_fck.pl
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/perl/commands.pl
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/perl/basexml.pl
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/perl/util.pl
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/aspx/connector.aspx
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/cfm/connector.cfm
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/cfm/config.cfm
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/test.html
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/js/fckxml.js
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/js/common.js
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/js.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/html.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/Folder32.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/spacer.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/Folder.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/frmfolders.html
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/frmresourceslist.html
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/frmupload.html
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/browser.css
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/browser.html
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/frmactualfolder.html
-www/vtiger/include/fckeditor/editor/filemanager/browser/default/frmresourcetype.html
-www/vtiger/include/fckeditor/editor/_source/classes/fckpanel_gecko.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckcontextmenugroup.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckxml_ie.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckstyledef_gecko.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckspecialcombo.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckevents.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckxml_gecko.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckcontextmenuitem.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbar.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckpanel_ie.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckstyledef.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckplugin.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckstyledef_ie.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarcombo.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckstylesloader.js
-www/vtiger/include/fckeditor/editor/_source/classes/fckcontextmenuseparator.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js
-www/vtiger/include/fckeditor/editor/_source/classes/fcktoolbarbutton.js
-www/vtiger/include/fckeditor/editor/_source/internals/fck_2_ie.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckurlparams.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckcontextmenu.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckconfig.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcktablehandler_ie.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcktoolbarset.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckxhtml.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckplugins.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckxhtml_gecko.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckselection_ie.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckdialog_gecko.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckscriptloader.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckcodeformatter.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckdialog_ie.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckselection.js
-www/vtiger/include/fckeditor/editor/_source/internals/fck_onload.js
-www/vtiger/include/fckeditor/editor/_source/internals/fck_1.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcktoolbaritems.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckcommands.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckcontextmenu_ie.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcknamespace.js
-www/vtiger/include/fckeditor/editor/_source/internals/fck_last.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckxhtmlentities.js
-www/vtiger/include/fckeditor/editor/_source/internals/fck_2.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckxhtml_ie.js
-www/vtiger/include/fckeditor/editor/_source/internals/fck_2_gecko.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckundo_ie.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcktools.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckcoreextensions.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcktools_gecko.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckselection_gecko.js
-www/vtiger/include/fckeditor/editor/_source/internals/fck_1_gecko.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckundo_gecko.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckregexlib.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckdialog.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckbrowserinfo.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcktablehandler.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcktablehandler_gecko.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcktools_ie.js
-www/vtiger/include/fckeditor/editor/_source/internals/fcklanguagemanager.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckcontextmenu_gecko.js
-www/vtiger/include/fckeditor/editor/_source/internals/fckdebug.js
-www/vtiger/include/fckeditor/editor/_source/internals/fck_1_ie.js
-www/vtiger/include/fckeditor/editor/_source/internals/fck.js
-www/vtiger/include/fckeditor/editor/_source/commandclasses/fck_othercommands.js
-www/vtiger/include/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js
-www/vtiger/include/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js
-www/vtiger/include/fckeditor/editor/_source/commandclasses/fcktablecommand.js
-www/vtiger/include/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js
-www/vtiger/include/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js
-www/vtiger/include/fckeditor/editor/_source/commandclasses/fcknamedcommand.js
-www/vtiger/include/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js
-www/vtiger/include/fckeditor/editor/_source/commandclasses/fckstylecommand.js
-www/vtiger/include/fckeditor/editor/_source/globals/fckeditorapi.js
-www/vtiger/include/fckeditor/editor/_source/globals/fck_constants.js
-www/vtiger/include/fckeditor/editor/plugins/placeholder/lang/it.js
-www/vtiger/include/fckeditor/editor/plugins/placeholder/lang/de.js
-www/vtiger/include/fckeditor/editor/plugins/placeholder/lang/pl.js
-www/vtiger/include/fckeditor/editor/plugins/placeholder/lang/en.js
-www/vtiger/include/fckeditor/editor/plugins/placeholder/lang/fr.js
-www/vtiger/include/fckeditor/editor/plugins/placeholder/fck_placeholder.html
-www/vtiger/include/fckeditor/editor/plugins/placeholder/fckplugin.js
-www/vtiger/include/fckeditor/editor/plugins/placeholder/placeholder.gif
-www/vtiger/include/fckeditor/editor/plugins/tablecommands/fckplugin.js
-www/vtiger/include/fckeditor/editor/css/behaviors/moz-bindings.xml
-www/vtiger/include/fckeditor/editor/css/behaviors/anchor.gif
-www/vtiger/include/fckeditor/editor/css/behaviors/disablehandles.htc
-www/vtiger/include/fckeditor/editor/css/behaviors/showtableborders.htc
-www/vtiger/include/fckeditor/editor/css/behaviors/hiddenfield.htc
-www/vtiger/include/fckeditor/editor/css/behaviors/anchors.htc
-www/vtiger/include/fckeditor/editor/css/behaviors/hiddenfield.gif
-www/vtiger/include/fckeditor/editor/css/fck_internal.css
-www/vtiger/include/fckeditor/editor/css/fck_editorarea.css
-www/vtiger/include/fckeditor/editor/css/fck_showtableborders_gecko.css
-www/vtiger/include/fckeditor/editor/js/fckeditorcode_gecko_2.js
-www/vtiger/include/fckeditor/editor/js/fckeditorcode_ie_1.js
-www/vtiger/include/fckeditor/editor/js/fckeditorcode_ie_2.js
-www/vtiger/include/fckeditor/editor/js/fck_startup.js
-www/vtiger/include/fckeditor/editor/js/fckeditorcode_gecko_1.js
-www/vtiger/include/fckeditor/editor/fckeditor.html
-www/vtiger/include/fckeditor/editor/fckdebug.html
-www/vtiger/include/fckeditor/editor/fckdocument.html
-www/vtiger/include/fckeditor/editor/fckeditor.original.html
-www/vtiger/include/fckeditor/editor/fckeditorarea.html
-www/vtiger/include/fckeditor/editor/fckblank.html
-www/vtiger/include/fckeditor/editor/fckdialog.html
-www/vtiger/include/fckeditor/fckconfig.js
-www/vtiger/include/fckeditor/fcktemplates.xml
-www/vtiger/include/fckeditor/fckeditor.php
-www/vtiger/include/fckeditor/fckeditor.js
-www/vtiger/include/fckeditor/license.txt
-www/vtiger/include/fckeditor/fckstyles.xml
-www/vtiger/include/prototype-1.4.0/src/hash.js
-www/vtiger/include/prototype-1.4.0/src/range.js
-www/vtiger/include/prototype-1.4.0/src/ajax.js
-www/vtiger/include/prototype-1.4.0/src/event.js
-www/vtiger/include/prototype-1.4.0/src/prototype.js
-www/vtiger/include/prototype-1.4.0/src/HEADER
-www/vtiger/include/prototype-1.4.0/src/enumerable.js
-www/vtiger/include/prototype-1.4.0/src/form.js
-www/vtiger/include/prototype-1.4.0/src/array.js
-www/vtiger/include/prototype-1.4.0/src/dom.js
-www/vtiger/include/prototype-1.4.0/src/position.js
-www/vtiger/include/prototype-1.4.0/src/base.js
-www/vtiger/include/prototype-1.4.0/src/string.js
-www/vtiger/include/prototype-1.4.0/dist/prototype.js
-www/vtiger/include/prototype-1.4.0/lib/protodoc.rb
-www/vtiger/include/prototype-1.4.0/test/console.html
-www/vtiger/include/prototype-1.4.0/test/test.css
-www/vtiger/include/prototype-1.4.0/CHANGELOG
-www/vtiger/include/prototype-1.4.0/LICENSE
-www/vtiger/include/prototype-1.4.0/Rakefile
-www/vtiger/include/prototype-1.4.0/README
-www/vtiger/include/ListView/ListViewSession.php
-www/vtiger/include/ListView/ListView.php
-www/vtiger/include/logging.php
-www/vtiger/include/ComboStrings.php
-www/vtiger/include/vtiger-crm.gif
-www/vtiger/include/PopulateComboValues.php
-www/vtiger/include/DatabaseUtil.php
-www/vtiger/include/RelatedListView.php
-www/vtiger/include/upload_file.php
-www/vtiger/include/Menu.php
-www/vtiger/include/ComboUtil.php
-www/vtiger/include/FormValidationUtil.php
-www/vtiger/include/style.css
-www/vtiger/include/quickcreate.php
-www/vtiger/include/CustomFieldUtil.php
-www/vtiger/pkg/bin/datamigration.bat
-www/vtiger/pkg/bin/find_replace.bat
-www/vtiger/pkg/bin/stopvTiger.sh
-www/vtiger/pkg/bin/stopvTiger.bat
-www/vtiger/pkg/bin/uninstallvtiger.sh
-www/vtiger/pkg/bin/startvTiger.bat
-www/vtiger/pkg/bin/datamigration.sh
-www/vtiger/pkg/bin/startvTiger.sh
-www/vtiger/pkg/license/License_linux.txt
-www/vtiger/pkg/license/License_windows.txt
-www/vtiger/pkg/apache/bin/ShutdownApache.exe
-www/vtiger/pkg/apache/conf/lin_httpd.conf
-www/vtiger/pkg/apache/conf/win_httpd.conf
-www/vtiger/pkg/php/php.ini
-www/vtiger/themes/woodspice/images/dash_switch_view.jpg
-www/vtiger/themes/woodspice/images/pending_right.gif
-www/vtiger/themes/woodspice/images/btnL3Calc-Faded.gif
-www/vtiger/themes/woodspice/images/movecol_del_over.gif
-www/vtiger/themes/woodspice/images/head_end.gif
-www/vtiger/themes/woodspice/images/Meetings.gif
-www/vtiger/themes/woodspice/images/prvPrfBottomRight.gif
-www/vtiger/themes/woodspice/images/calNavNext.gif
-www/vtiger/themes/woodspice/images/webmail_trash.gif
-www/vtiger/themes/woodspice/images/dash_sel_left.jpg
-www/vtiger/themes/woodspice/images/dash_screw.gif
-www/vtiger/themes/woodspice/images/showPanelTopLeft.gif
-www/vtiger/themes/woodspice/images/calBottomLeft.gif
-www/vtiger/themes/woodspice/images/loginSITopRight.gif
-www/vtiger/themes/woodspice/images/settingsSelUIBg.gif
-www/vtiger/themes/woodspice/images/ico-roles.gif
-www/vtiger/themes/woodspice/images/blank.gif
-www/vtiger/themes/woodspice/images/calc_res_br.gif
-www/vtiger/themes/woodspice/images/rssDisplayLeft.gif
-www/vtiger/themes/woodspice/images/rssroot.gif
-www/vtiger/themes/woodspice/images/calc_canc_btn.gif
-www/vtiger/themes/woodspice/images/tbarSettings.gif
-www/vtiger/themes/woodspice/images/arrow_down.gif
-www/vtiger/themes/woodspice/images/btnL3AllMenu-Faded.gif
-www/vtiger/themes/woodspice/images/Rolesadd.gif
-www/vtiger/themes/woodspice/images/qcBg.gif
-www/vtiger/themes/woodspice/images/select.gif
-www/vtiger/themes/woodspice/images/calc_res_bl.gif
-www/vtiger/themes/woodspice/images/clear_field.gif
-www/vtiger/themes/woodspice/images/btnL3Search.gif
-www/vtiger/themes/woodspice/images/calc_res_mr.gif
-www/vtiger/themes/woodspice/images/tabUnSelectedBg.gif
-www/vtiger/themes/woodspice/images/enabled.gif
-www/vtiger/themes/woodspice/images/menuDnArrow.gif
-www/vtiger/themes/woodspice/images/phone.gif
-www/vtiger/themes/woodspice/images/date.gif
-www/vtiger/themes/woodspice/images/picklist.gif
-www/vtiger/themes/woodspice/images/todaybg.gif
-www/vtiger/themes/woodspice/images/pricebook.gif
-www/vtiger/themes/woodspice/images/movecol_down_over.gif
-www/vtiger/themes/woodspice/images/calc_res_bc.gif
-www/vtiger/themes/woodspice/images/btnL3Calendar.gif
-www/vtiger/themes/woodspice/images/calc_res_ml.gif
-www/vtiger/themes/woodspice/images/shareaccess.gif
-www/vtiger/themes/woodspice/images/Tasks.gif
-www/vtiger/themes/woodspice/images/left_arc.gif
-www/vtiger/themes/woodspice/images/arrow.jpg
-www/vtiger/themes/woodspice/images/close.gif
-www/vtiger/themes/woodspice/images/help.gif
-www/vtiger/themes/woodspice/images/text.gif
-www/vtiger/themes/woodspice/images/movecol_down_disabled.gif
-www/vtiger/themes/woodspice/images/small_left.gif
-www/vtiger/themes/woodspice/images/cal_add.jpg
-www/vtiger/themes/woodspice/images/cal16x16ToDo.jpg
-www/vtiger/themes/woodspice/images/calTopRight.gif
-www/vtiger/themes/woodspice/images/cal_prev_nav.gif
-www/vtiger/themes/woodspice/images/calc_res_tr.gif
-www/vtiger/themes/woodspice/images/basicSearchLens.gif
-www/vtiger/themes/woodspice/images/private.gif
-www/vtiger/themes/woodspice/images/movecol_up.gif
-www/vtiger/themes/woodspice/images/btnL3AllMenu.gif
-www/vtiger/themes/woodspice/images/start_disabled.gif
-www/vtiger/themes/woodspice/images/level2TabBg.gif
-www/vtiger/themes/woodspice/images/currency.gif
-www/vtiger/themes/woodspice/images/calc_res_tl.gif
-www/vtiger/themes/woodspice/images/Accounts.gif
-www/vtiger/themes/woodspice/images/tabular.gif
-www/vtiger/themes/woodspice/images/previous.gif
-www/vtiger/themes/woodspice/images/showPanelTopBg.gif
-www/vtiger/themes/woodspice/images/showPanelTopRight.gif
-www/vtiger/themes/woodspice/images/announ.gif
-www/vtiger/themes/woodspice/images/small_right.gif
-www/vtiger/themes/woodspice/images/mailHdr.jpg
-www/vtiger/themes/woodspice/images/print.gif
-www/vtiger/themes/woodspice/images/plsWaitAnimated.gif
-www/vtiger/themes/woodspice/images/prvPrfHdrArrow.gif
-www/vtiger/themes/woodspice/images/rssDisplayBottomRight.gif
-www/vtiger/themes/woodspice/images/cal_Hdr.gif
-www/vtiger/themes/woodspice/images/one.gif
-www/vtiger/themes/woodspice/images/rssimage.gif
-www/vtiger/themes/woodspice/images/system.gif
-www/vtiger/themes/woodspice/images/calc_res_tc.gif
-www/vtiger/themes/woodspice/images/calc_back_btn.gif
-www/vtiger/themes/woodspice/images/tagCloudName.gif
-www/vtiger/themes/woodspice/images/reportsFolderCreate.gif
-www/vtiger/themes/woodspice/images/cal_title.jpg
-www/vtiger/themes/woodspice/images/company.gif
-www/vtiger/themes/woodspice/images/myTickets.gif
-www/vtiger/themes/woodspice/images/search.gif
-www/vtiger/themes/woodspice/images/settingsActBtnDelete.gif
-www/vtiger/themes/woodspice/images/previous_disabled.gif
-www/vtiger/themes/woodspice/images/cal_hdr.jpg
-www/vtiger/themes/woodspice/images/site_unsel.jpg
-www/vtiger/themes/woodspice/images/RolesEdit.gif
-www/vtiger/themes/woodspice/images/offstar.gif
-www/vtiger/themes/woodspice/images/topbar.gif
-www/vtiger/themes/woodspice/images/titleMailClient.gif
-www/vtiger/themes/woodspice/images/rssDisplayBottom.gif
-www/vtiger/themes/woodspice/images/dash_sel_btm.jpg
-www/vtiger/themes/woodspice/images/cal16x16Meeting.jpg
-www/vtiger/themes/woodspice/images/orgshar.gif
-www/vtiger/themes/woodspice/images/tbarExport.gif
-www/vtiger/themes/woodspice/images/RolesDelete.gif
-www/vtiger/themes/woodspice/images/strikeline.gif
-www/vtiger/themes/woodspice/images/movecol_down_down.gif
-www/vtiger/themes/woodspice/images/webmail_settings.gif
-www/vtiger/themes/woodspice/images/cal16x16MeetingAdd.jpg
-www/vtiger/themes/woodspice/images/delete.gif
-www/vtiger/themes/woodspice/images/dash_top.jpg
-www/vtiger/themes/woodspice/images/up.gif
-www/vtiger/themes/woodspice/images/loginTopShade.gif
-www/vtiger/themes/woodspice/images/upcoming_left.gif
-www/vtiger/themes/woodspice/images/audit.gif
-www/vtiger/themes/woodspice/images/loginBg.gif
-www/vtiger/themes/woodspice/images/titleMySites.gif
-www/vtiger/themes/woodspice/images/cal16x16Linked.jpg
-www/vtiger/themes/woodspice/images/tbarImport-Faded.gif
-www/vtiger/themes/woodspice/images/cal_nav.gif
-www/vtiger/themes/woodspice/images/keyMetrics.gif
-www/vtiger/themes/woodspice/images/ogmailserver.gif
-www/vtiger/themes/woodspice/images/pointer.gif
-www/vtiger/themes/woodspice/images/attachment.gif
-www/vtiger/themes/woodspice/images/scroll_right.gif
-www/vtiger/themes/woodspice/images/tblPro1BtnHide.gif
-www/vtiger/themes/woodspice/images/webmail_header.gif
-www/vtiger/themes/woodspice/images/calc_logo.gif
-www/vtiger/themes/woodspice/images/vtiger-crm.gif
-www/vtiger/themes/woodspice/images/Settings.gif
-www/vtiger/themes/woodspice/images/logout.gif
-www/vtiger/themes/woodspice/images/public.gif
-www/vtiger/themes/woodspice/images/compose.gif
-www/vtiger/themes/woodspice/images/calNavPrev.gif
-www/vtiger/themes/woodspice/images/head_start.gif
-www/vtiger/themes/woodspice/images/prvPrfSelectedTick.gif
-www/vtiger/themes/woodspice/images/composeMail.jpg
-www/vtiger/themes/woodspice/images/calc_mem_btn.gif
-www/vtiger/themes/woodspice/images/loginSIBottomLeft.gif
-www/vtiger/themes/woodspice/images/rssDisplayBg.gif
-www/vtiger/themes/woodspice/images/rssDisplayTopRight.gif
-www/vtiger/themes/woodspice/images/settings_top.gif
-www/vtiger/themes/woodspice/images/aboutUS.jpg
-www/vtiger/themes/woodspice/images/rssDisplayTopLeft.gif
-www/vtiger/themes/woodspice/images/tbarChat.gif
-www/vtiger/themes/woodspice/images/notification.gif
-www/vtiger/themes/woodspice/images/loginBottomBg.gif
-www/vtiger/themes/woodspice/images/rssDisplayTop.gif
-www/vtiger/themes/woodspice/images/myTopAccounts.gif
-www/vtiger/themes/woodspice/images/inventory.gif
-www/vtiger/themes/woodspice/images/menu_on_end.gif
-www/vtiger/themes/woodspice/images/tabSelectedBg.gif
-www/vtiger/themes/woodspice/images/Leads.gif
-www/vtiger/themes/woodspice/images/cal12x12Shared.gif
-www/vtiger/themes/woodspice/images/minus.gif
-www/vtiger/themes/woodspice/images/cal_next_nav.gif
-www/vtiger/themes/woodspice/images/movecol_del.gif
-www/vtiger/themes/woodspice/images/myTopInvoices.gif
-www/vtiger/themes/woodspice/images/hdrTabBg.gif
-www/vtiger/themes/woodspice/images/del_tag.gif
-www/vtiger/themes/woodspice/images/btnL3Search-Faded.gif
-www/vtiger/themes/woodspice/images/disabled.gif
-www/vtiger/themes/woodspice/images/percent.gif
-www/vtiger/themes/woodspice/images/lvtNavBtnLast.gif
-www/vtiger/themes/woodspice/images/dash_unsel_chart.jpg
-www/vtiger/themes/woodspice/images/calc_top_right.gif
-www/vtiger/themes/woodspice/images/ico-profile.gif
-www/vtiger/themes/woodspice/images/dash_sel_top.jpg
-www/vtiger/themes/woodspice/images/movecol_del_down.gif
-www/vtiger/themes/woodspice/images/end.gif
-www/vtiger/themes/woodspice/images/tbarImport.gif
-www/vtiger/themes/woodspice/images/vtigerDevDocs.gif
-www/vtiger/themes/woodspice/images/movecol_up_over.gif
-www/vtiger/themes/woodspice/images/pending_left.gif
-www/vtiger/themes/woodspice/images/end_disabled.gif
-www/vtiger/themes/woodspice/images/settingsActBtnDuplicate.gif
-www/vtiger/themes/woodspice/images/tbarChat-Faded.gif
-www/vtiger/themes/woodspice/images/rssOnHeader.gif
-www/vtiger/themes/woodspice/images/editfield.gif
-www/vtiger/themes/woodspice/images/vtiger.jpg
-www/vtiger/themes/woodspice/images/cal_clock.jpg
-www/vtiger/themes/woodspice/images/rssdelete.gif
-www/vtiger/themes/woodspice/images/menu_off_tile.gif
-www/vtiger/themes/woodspice/images/start.gif
-www/vtiger/themes/woodspice/images/spacer.gif
-www/vtiger/themes/woodspice/images/rssDisplayBottomLeft.gif
-www/vtiger/themes/woodspice/images/about_btm.jpg
-www/vtiger/themes/woodspice/images/topBg.gif
-www/vtiger/themes/woodspice/images/lvtNavBtnNext.gif
-www/vtiger/themes/woodspice/images/rssframeHdr.gif
-www/vtiger/themes/woodspice/images/lvtNavBtnFirst.gif
-www/vtiger/themes/woodspice/images/btnL3Tracker.gif
-www/vtiger/themes/woodspice/images/next.gif
-www/vtiger/themes/woodspice/images/reportsMove.gif
-www/vtiger/themes/woodspice/images/top_left.jpg
-www/vtiger/themes/woodspice/images/cfpicklist.gif
-www/vtiger/themes/woodspice/images/btnL3Calc.gif
-www/vtiger/themes/woodspice/images/settingsMTBg.gif
-www/vtiger/themes/woodspice/images/vtbusy.gif
-www/vtiger/themes/woodspice/images/backupserver.gif
-www/vtiger/themes/woodspice/images/btnL3Clock-Faded.gif
-www/vtiger/themes/woodspice/images/addrss.gif
-www/vtiger/themes/woodspice/images/Calls.gif
-www/vtiger/themes/woodspice/images/menu_off_end.gif
-www/vtiger/themes/woodspice/images/tbarExport-Faded.gif
-www/vtiger/themes/woodspice/images/dboardMatrixView.gif
-www/vtiger/themes/woodspice/images/dashSelectBg.gif
-www/vtiger/themes/woodspice/images/searchUIBg.gif
-www/vtiger/themes/woodspice/images/dash_screw.jpg
-www/vtiger/themes/woodspice/images/report_btn.gif
-www/vtiger/themes/woodspice/images/menu_off_start.gif
-www/vtiger/themes/woodspice/images/advancedSearchLens.gif
-www/vtiger/themes/woodspice/images/calc_bottom_right.gif
-www/vtiger/themes/woodspice/images/ico-users.gif
-www/vtiger/themes/woodspice/images/showsubmenu.gif
-www/vtiger/themes/woodspice/images/tblPro1ColBg.gif
-www/vtiger/themes/woodspice/images/ico-groups.gif
-www/vtiger/themes/woodspice/images/loginBottomURL.gif
-www/vtiger/themes/woodspice/images/proxy.gif
-www/vtiger/themes/woodspice/images/free.gif
-www/vtiger/themes/woodspice/images/calSep.gif
-www/vtiger/themes/woodspice/images/left.gif
-www/vtiger/themes/woodspice/images/dash_btm_center.jpg
-www/vtiger/themes/woodspice/images/black.png
-www/vtiger/themes/woodspice/images/terms.gif
-www/vtiger/themes/woodspice/images/rssforward.gif
-www/vtiger/themes/woodspice/images/email.gif
-www/vtiger/themes/woodspice/images/cfcurrency.gif
-www/vtiger/themes/woodspice/images/moduleSelectorBg.gif
-www/vtiger/themes/woodspice/images/myTopSalesOrders.gif
-www/vtiger/themes/woodspice/images/number.gif
-www/vtiger/themes/woodspice/images/reportsDelete.gif
-www/vtiger/themes/woodspice/images/uparrow.gif
-www/vtiger/themes/woodspice/images/bottom_left.jpg
-www/vtiger/themes/woodspice/images/dboardNormalView.gif
-www/vtiger/themes/woodspice/images/Potentials.gif
-www/vtiger/themes/woodspice/images/checkbox.gif
-www/vtiger/themes/woodspice/images/scroll_right_down.gif
-www/vtiger/themes/woodspice/images/empty.jpg
-www/vtiger/themes/woodspice/images/help_icon.gif
-www/vtiger/themes/woodspice/images/btnL3Calendar-Faded.gif
-www/vtiger/themes/woodspice/images/cal16x16Call.jpg
-www/vtiger/themes/woodspice/images/Call.gif
-www/vtiger/themes/woodspice/images/jump.gif
-www/vtiger/themes/woodspice/images/movecol_up_down.gif
-www/vtiger/themes/woodspice/images/scroll_left.gif
-www/vtiger/themes/woodspice/images/reportsCreate.gif
-www/vtiger/themes/woodspice/images/picklist_hint.gif
-www/vtiger/themes/woodspice/images/calAddButtonBg.gif
-www/vtiger/themes/woodspice/images/calc_black_btn.gif
-www/vtiger/themes/woodspice/images/calBottomRight.gif
-www/vtiger/themes/woodspice/images/rssDisplayRight.gif
-www/vtiger/themes/woodspice/images/ViewTemplate.gif
-www/vtiger/themes/woodspice/images/hometop.gif
-www/vtiger/themes/woodspice/images/reload.gif
-www/vtiger/themes/woodspice/images/right_arc.gif
-www/vtiger/themes/woodspice/images/cal16x16ToDoAdd.jpg
-www/vtiger/themes/woodspice/images/myUpcoPendAct.gif
-www/vtiger/themes/woodspice/images/mailmarge.gif
-www/vtiger/themes/woodspice/images/Reports_arrow.gif
-www/vtiger/themes/woodspice/images/prvPrfBottomLeft.gif
-www/vtiger/themes/woodspice/images/yes.gif
-www/vtiger/themes/woodspice/images/webmail_uparrow.gif
-www/vtiger/themes/woodspice/images/btnL3Add-Faded.gif
-www/vtiger/themes/woodspice/images/showDown.gif
-www/vtiger/themes/woodspice/images/cal_add.gif
-www/vtiger/themes/woodspice/images/calc_top_left.gif
-www/vtiger/themes/woodspice/images/mailTitle.jpg
-www/vtiger/themes/woodspice/images/dash_btm_right.jpg
-www/vtiger/themes/woodspice/images/Contacts.gif
-www/vtiger/themes/woodspice/images/top_right.jpg
-www/vtiger/themes/woodspice/images/next_disabled.gif
-www/vtiger/themes/woodspice/images/clock_bg.gif
-www/vtiger/themes/woodspice/images/expand.gif
-www/vtiger/themes/woodspice/images/dash_btm_left.jpg
-www/vtiger/themes/woodspice/images/menu_on_start.gif
-www/vtiger/themes/woodspice/images/tagcloud_03.gif
-www/vtiger/themes/woodspice/images/mailSubHeaderBg.gif
-www/vtiger/themes/woodspice/images/migrate.gif
-www/vtiger/themes/woodspice/images/RolesMove.gif
-www/vtiger/themes/woodspice/images/Meeting.gif
-www/vtiger/themes/woodspice/images/loginSIBottomRight.gif
-www/vtiger/themes/woodspice/images/tagCloudBg.gif
-www/vtiger/themes/woodspice/images/primeTopBg.gif
-www/vtiger/themes/woodspice/images/calc_middle_right.gif
-www/vtiger/themes/woodspice/images/arrow_up.gif
-www/vtiger/themes/woodspice/images/report_bottom.gif
-www/vtiger/themes/woodspice/images/calc_red_btn.gif
-www/vtiger/themes/woodspice/images/calBottomBg.gif
-www/vtiger/themes/woodspice/images/tabRht.gif
-www/vtiger/themes/woodspice/images/TopOpenQuotes.gif
-www/vtiger/themes/woodspice/images/denied.gif
-www/vtiger/themes/woodspice/images/set-IcoLoginHistory.gif
-www/vtiger/themes/woodspice/images/dash_name.jpg
-www/vtiger/themes/woodspice/images/calendar.gif
-www/vtiger/themes/woodspice/images/cal_event.jpg
-www/vtiger/themes/woodspice/images/HomeBtm.gif
-www/vtiger/themes/woodspice/images/rss.gif
-www/vtiger/themes/woodspice/images/menu_root.gif
-www/vtiger/themes/woodspice/images/summarize.gif
-www/vtiger/themes/woodspice/images/myGroupAllocation.gif
-www/vtiger/themes/woodspice/images/btnAlexa.gif
-www/vtiger/themes/woodspice/images/no.gif
-www/vtiger/themes/woodspice/images/btnL3Tracker-Faded.gif
-www/vtiger/themes/woodspice/images/webmail_root.gif
-www/vtiger/themes/woodspice/images/tabSeperatorBg.gif
-www/vtiger/themes/woodspice/images/calc_grey_btn.gif
-www/vtiger/themes/woodspice/images/dash_down_arrow.jpg
-www/vtiger/themes/woodspice/images/cal16x16CallAdd.jpg
-www/vtiger/themes/woodspice/images/bookMark.gif
-www/vtiger/themes/woodspice/images/lvtNavBtnPrev.gif
-www/vtiger/themes/woodspice/images/webmail_downarrow.gif
-www/vtiger/themes/woodspice/images/plus.gif
-www/vtiger/themes/woodspice/images/dash_sel_chart.jpg
-www/vtiger/themes/woodspice/images/del.gif
-www/vtiger/themes/woodspice/images/topcut.gif
-www/vtiger/themes/woodspice/images/calBg.gif
-www/vtiger/themes/woodspice/images/cal_sharing.jpg
-www/vtiger/themes/woodspice/images/Opportunities.gif
-www/vtiger/themes/woodspice/images/assign.gif
-www/vtiger/themes/woodspice/images/upcomingEvents.gif
-www/vtiger/themes/woodspice/images/btnL3Add.gif
-www/vtiger/themes/woodspice/images/btnL3Clock.gif
-www/vtiger/themes/woodspice/images/searching.gif
-www/vtiger/themes/woodspice/images/right.gif
-www/vtiger/themes/woodspice/images/url.gif
-www/vtiger/themes/woodspice/images/scroll_left_down.gif
-www/vtiger/themes/woodspice/images/set-IcoTwoTabConfig.gif
-www/vtiger/themes/woodspice/images/migration_sucess.jpg
-www/vtiger/themes/woodspice/images/menu_on_tile.gif
-www/vtiger/themes/woodspice/images/qcName.gif
-www/vtiger/themes/woodspice/images/status.gif
-www/vtiger/themes/woodspice/images/calTopLeft.gif
-www/vtiger/themes/woodspice/images/topBnr.gif
-www/vtiger/themes/woodspice/images/currencydelete.gif
-www/vtiger/themes/woodspice/images/bottom_right.jpg
-www/vtiger/themes/woodspice/images/movecol_up_disabled.gif
-www/vtiger/themes/woodspice/images/Home_15.gif
-www/vtiger/themes/woodspice/images/Tickets.gif
-www/vtiger/themes/woodspice/images/bl_bar.jpg
-www/vtiger/themes/woodspice/images/calc_bottom_center.gif
-www/vtiger/themes/woodspice/images/report_bg.gif
-www/vtiger/themes/woodspice/images/site_sel.jpg
-www/vtiger/themes/woodspice/images/picklistEditor.gif
-www/vtiger/themes/woodspice/images/popupHdr.jpg
-www/vtiger/themes/woodspice/images/report_newHdr.gif
-www/vtiger/themes/woodspice/images/onstar.gif
-www/vtiger/themes/woodspice/images/cal_Others.gif
-www/vtiger/themes/woodspice/images/dash_btm.jpg
-www/vtiger/themes/woodspice/images/pendingEvents.gif
-www/vtiger/themes/woodspice/images/dash_scroll_up.jpg
-www/vtiger/themes/woodspice/images/loginSITopLeft.gif
-www/vtiger/themes/woodspice/images/rssHeader.gif
-www/vtiger/themes/woodspice/images/settingsActBtnEdit.gif
-www/vtiger/themes/woodspice/images/cal_sel.jpg
-www/vtiger/themes/woodspice/images/cal16x16Shared.jpg
-www/vtiger/themes/woodspice/images/collapse.gif
-www/vtiger/themes/woodspice/images/calc_blue_btn.gif
-www/vtiger/themes/woodspice/images/Quotes.gif
-www/vtiger/themes/woodspice/images/upcoming_right.gif
-www/vtiger/themes/woodspice/images/custom.gif
-www/vtiger/themes/woodspice/images/skype.gif
-www/vtiger/themes/woodspice/images/Thumbs.db
-www/vtiger/themes/woodspice/images/titleRSSReader.gif
-www/vtiger/themes/woodspice/images/busy.gif
-www/vtiger/themes/woodspice/images/taxConfiguration.gif
-www/vtiger/themes/woodspice/images/myTopOpenPotentials.gif
-www/vtiger/themes/woodspice/images/dash_top_shadow.jpg
-www/vtiger/themes/woodspice/images/prvPrfTopLeft.gif
-www/vtiger/themes/woodspice/images/dashTopBg.gif
-www/vtiger/themes/woodspice/images/movecol_down.gif
-www/vtiger/themes/woodspice/images/prvPrfTopRight.gif
-www/vtiger/themes/woodspice/images/dashBottomBg.gif
-www/vtiger/themes/woodspice/images/site_hdr.jpg
-www/vtiger/themes/woodspice/images/check_mail.gif
-www/vtiger/themes/woodspice/images/layerPopupBg.gif
-www/vtiger/themes/woodspice/images/rssDisplaySpeaker.gif
-www/vtiger/themes/woodspice/images/calc_bottom_left.gif
-www/vtiger/themes/woodspice/header.php
-www/vtiger/themes/woodspice/loginheader.html
-www/vtiger/themes/woodspice/footer.php
-www/vtiger/themes/woodspice/style.css
-www/vtiger/themes/woodspice/layout_utils.php
-www/vtiger/themes/woodspice/loginheader.php
-www/vtiger/themes/bluelagoon/images/menuDnArrow.gif
-www/vtiger/themes/bluelagoon/images/dash_name.jpg
-www/vtiger/themes/bluelagoon/images/offstar.gif
-www/vtiger/themes/bluelagoon/images/dash_down_arrow.jpg
-www/vtiger/themes/bluelagoon/images/cal16x16CallAdd.jpg
-www/vtiger/themes/bluelagoon/images/qcBg.gif
-www/vtiger/themes/bluelagoon/images/cal_event.jpg
-www/vtiger/themes/bluelagoon/images/layerPopupBg.gif
-www/vtiger/themes/bluelagoon/images/btnL3Calc.gif
-www/vtiger/themes/bluelagoon/images/calc_res_bc.gif
-www/vtiger/themes/bluelagoon/images/calc_res_ml.gif
-www/vtiger/themes/bluelagoon/images/loginBottomBg.gif
-www/vtiger/themes/bluelagoon/images/rssDisplayTop.gif
-www/vtiger/themes/bluelagoon/images/topBg.gif
-www/vtiger/themes/bluelagoon/images/shareaccess.gif
-www/vtiger/themes/bluelagoon/images/myTopAccounts.gif
-www/vtiger/themes/bluelagoon/images/summarize.gif
-www/vtiger/themes/bluelagoon/images/moduleSelectorBg.gif
-www/vtiger/themes/bluelagoon/images/vtbusy.gif
-www/vtiger/themes/bluelagoon/images/up.gif
-www/vtiger/themes/bluelagoon/images/addrss.gif
-www/vtiger/themes/bluelagoon/images/orgshar.gif
-www/vtiger/themes/bluelagoon/images/cal16x16Linked.jpg
-www/vtiger/themes/bluelagoon/images/dboardNormalView.gif
-www/vtiger/themes/bluelagoon/images/tabSelectedBg.gif
-www/vtiger/themes/bluelagoon/images/site_unsel.jpg
-www/vtiger/themes/bluelagoon/images/site_sel.jpg
-www/vtiger/themes/bluelagoon/images/myTopInvoices.gif
-www/vtiger/themes/bluelagoon/images/ico-users.gif
-www/vtiger/themes/bluelagoon/images/popupHdr.jpg
-www/vtiger/themes/bluelagoon/images/tblPro1BtnHide.gif
-www/vtiger/themes/bluelagoon/images/lvtNavBtnLast.gif
-www/vtiger/themes/bluelagoon/images/Calls.gif
-www/vtiger/themes/bluelagoon/images/loginBottomURL.gif
-www/vtiger/themes/bluelagoon/images/movecol_up_down.gif
-www/vtiger/themes/bluelagoon/images/Contacts.gif
-www/vtiger/themes/bluelagoon/images/loginSIBottomRight.gif
-www/vtiger/themes/bluelagoon/images/calTopRight.gif
-www/vtiger/themes/bluelagoon/images/movecol_down_over.gif
-www/vtiger/themes/bluelagoon/images/one.gif
-www/vtiger/themes/bluelagoon/images/rssDisplayRight.gif
-www/vtiger/themes/bluelagoon/images/clock_bg.gif
-www/vtiger/themes/bluelagoon/images/enabled.gif
-www/vtiger/themes/bluelagoon/images/tbarSettings.gif
-www/vtiger/themes/bluelagoon/images/prvPrfBottomLeft.gif
-www/vtiger/themes/bluelagoon/images/level2TabBg.gif
-www/vtiger/themes/bluelagoon/images/help.gif
-www/vtiger/themes/bluelagoon/images/topcut.gif
-www/vtiger/themes/bluelagoon/images/text.gif
-www/vtiger/themes/bluelagoon/images/compose.gif
-www/vtiger/themes/bluelagoon/images/webmail_uparrow.gif
-www/vtiger/themes/bluelagoon/images/assign.gif
-www/vtiger/themes/bluelagoon/images/number.gif
-www/vtiger/themes/bluelagoon/images/arrow_up.gif
-www/vtiger/themes/bluelagoon/images/small_right.gif
-www/vtiger/themes/bluelagoon/images/proxy.gif
-www/vtiger/themes/bluelagoon/images/dash_screw.jpg
-www/vtiger/themes/bluelagoon/images/calAddButtonBg.gif
-www/vtiger/themes/bluelagoon/images/keyMetrics.gif
-www/vtiger/themes/bluelagoon/images/calBottomRight.gif
-www/vtiger/themes/bluelagoon/images/black.png
-www/vtiger/themes/bluelagoon/images/end.gif
-www/vtiger/themes/bluelagoon/images/terms.gif
-www/vtiger/themes/bluelagoon/images/nextRecord.gif
-www/vtiger/themes/bluelagoon/images/aboutUS.jpg
-www/vtiger/themes/bluelagoon/images/cal12x12Shared.gif
-www/vtiger/themes/bluelagoon/images/attachment.gif
-www/vtiger/themes/bluelagoon/images/3hdrTabBg.gif
-www/vtiger/themes/bluelagoon/images/btnL3Tracker-Faded.gif
-www/vtiger/themes/bluelagoon/images/ico-groups.gif
-www/vtiger/themes/bluelagoon/images/calendar.gif
-www/vtiger/themes/bluelagoon/images/qcName.gif
-www/vtiger/themes/bluelagoon/images/status.gif
-www/vtiger/themes/bluelagoon/images/mailmarge.gif
-www/vtiger/themes/bluelagoon/images/topBnr.gif
-www/vtiger/themes/bluelagoon/images/vtiger-crm.gif
-www/vtiger/themes/bluelagoon/images/lvtNavBtnNext.gif
-www/vtiger/themes/bluelagoon/images/empty.jpg
-www/vtiger/themes/bluelagoon/images/head_start.gif
-www/vtiger/themes/bluelagoon/images/del_tag.gif
-www/vtiger/themes/bluelagoon/images/showPanelTopRight.gif
-www/vtiger/themes/bluelagoon/images/btnAlexa.gif
-www/vtiger/themes/bluelagoon/images/rssDisplayBottomLeft.gif
-www/vtiger/themes/bluelagoon/images/Potentials.gif
-www/vtiger/themes/bluelagoon/images/percent.gif
-www/vtiger/themes/bluelagoon/images/top_right.jpg
-www/vtiger/themes/bluelagoon/images/upcoming_left.gif
-www/vtiger/themes/bluelagoon/images/dash_top_shadow.jpg
-www/vtiger/themes/bluelagoon/images/RolesDelete.gif
-www/vtiger/themes/bluelagoon/images/cal16x16ToDo.jpg
-www/vtiger/themes/bluelagoon/images/rssHeader.gif
-www/vtiger/themes/bluelagoon/images/cal_prev_nav.gif
-www/vtiger/themes/bluelagoon/images/bookMark.gif
-www/vtiger/themes/bluelagoon/images/mailHdr.jpg
-www/vtiger/themes/bluelagoon/images/tbarChat-Faded.gif
-www/vtiger/themes/bluelagoon/images/btnL3AllMenu.gif
-www/vtiger/themes/bluelagoon/images/Meetings.gif
-www/vtiger/themes/bluelagoon/images/previous_disabled.gif
-www/vtiger/themes/bluelagoon/images/next.gif
-www/vtiger/themes/bluelagoon/images/dash_switch_view.jpg
-www/vtiger/themes/bluelagoon/images/Quotes.gif
-www/vtiger/themes/bluelagoon/images/custom.gif
-www/vtiger/themes/bluelagoon/images/reportsFolderCreate.gif
-www/vtiger/themes/bluelagoon/images/dashTopBg.gif
-www/vtiger/themes/bluelagoon/images/denied.gif
-www/vtiger/themes/bluelagoon/images/btnL3Calc-Faded.gif
-www/vtiger/themes/bluelagoon/images/calc_bottom_center.gif
-www/vtiger/themes/bluelagoon/images/movecol_down_down.gif
-www/vtiger/themes/bluelagoon/images/start.gif
-www/vtiger/themes/bluelagoon/images/tagCloudName.gif
-www/vtiger/themes/bluelagoon/images/composeMail.jpg
-www/vtiger/themes/bluelagoon/images/menu_root.gif
-www/vtiger/themes/bluelagoon/images/showPanelTopLeft.gif
-www/vtiger/themes/bluelagoon/images/loginSITopRight.gif
-www/vtiger/themes/bluelagoon/images/settingsSelUIBg.gif
-www/vtiger/themes/bluelagoon/images/reportsCreate.gif
-www/vtiger/themes/bluelagoon/images/picklist_hint.gif
-www/vtiger/themes/bluelagoon/images/picklist.gif
-www/vtiger/themes/bluelagoon/images/menu_off_start.gif
-www/vtiger/themes/bluelagoon/images/movecol_down_disabled.gif
-www/vtiger/themes/bluelagoon/images/tagCloudBg.gif
-www/vtiger/themes/bluelagoon/images/primeTopBg.gif
-www/vtiger/themes/bluelagoon/images/settingsActBtnEdit.gif
-www/vtiger/themes/bluelagoon/images/myUpcoPendAct.gif
-www/vtiger/themes/bluelagoon/images/dash_sel_btm.jpg
-www/vtiger/themes/bluelagoon/images/scroll_left_down.gif
-www/vtiger/themes/bluelagoon/images/scroll_left.gif
-www/vtiger/themes/bluelagoon/images/migration_sucess.jpg
-www/vtiger/themes/bluelagoon/images/menu_on_end.gif
-www/vtiger/themes/bluelagoon/images/Reports_arrow.gif
-www/vtiger/themes/bluelagoon/images/left.gif
-www/vtiger/themes/bluelagoon/images/loginBg.gif
-www/vtiger/themes/bluelagoon/images/dash_btm.jpg
-www/vtiger/themes/bluelagoon/images/cal_nav.gif
-www/vtiger/themes/bluelagoon/images/movecol_del.gif
-www/vtiger/themes/bluelagoon/images/pointer.gif
-www/vtiger/themes/bluelagoon/images/cfpicklist.gif
-www/vtiger/themes/bluelagoon/images/tabUnSelectedBg.gif
-www/vtiger/themes/bluelagoon/images/loginSIBottomLeft.gif
-www/vtiger/themes/bluelagoon/images/rssDisplayTopLeft.gif
-www/vtiger/themes/bluelagoon/images/collapse.gif
-www/vtiger/themes/bluelagoon/images/rss.gif
-www/vtiger/themes/bluelagoon/images/vtigerDevDocs.gif
-www/vtiger/themes/bluelagoon/images/Call.gif
-www/vtiger/themes/bluelagoon/images/ico-profile.gif
-www/vtiger/themes/bluelagoon/images/jump.gif
-www/vtiger/themes/bluelagoon/images/next_disabled.gif
-www/vtiger/themes/bluelagoon/images/titleMySites.gif
-www/vtiger/themes/bluelagoon/images/searchUIBg.gif
-www/vtiger/themes/bluelagoon/images/dash_btm_left.jpg
-www/vtiger/themes/bluelagoon/images/searching.gif
-www/vtiger/themes/bluelagoon/images/rssDisplayBottomRight.gif
-www/vtiger/themes/bluelagoon/images/ogmailserver.gif
-www/vtiger/themes/bluelagoon/images/report_btn.gif
-www/vtiger/themes/bluelagoon/images/calBg.gif
-www/vtiger/themes/bluelagoon/images/calc_black_btn.gif
-www/vtiger/themes/bluelagoon/images/scroll_right.gif
-www/vtiger/themes/bluelagoon/images/currency.gif
-www/vtiger/themes/bluelagoon/images/select.gif
-www/vtiger/themes/bluelagoon/images/email.gif
-www/vtiger/themes/bluelagoon/images/currencydelete.gif
-www/vtiger/themes/bluelagoon/images/previous.gif
-www/vtiger/themes/bluelagoon/images/btnL3Search-Faded.gif
-www/vtiger/themes/bluelagoon/images/rssOnHeader.gif
-www/vtiger/themes/bluelagoon/images/menu_off_tile.gif
-www/vtiger/themes/bluelagoon/images/site_hdr.jpg
-www/vtiger/themes/bluelagoon/images/TopOpenQuotes.gif
-www/vtiger/themes/bluelagoon/images/right.gif
-www/vtiger/themes/bluelagoon/images/calc_mem_btn.gif
-www/vtiger/themes/bluelagoon/images/hometop.gif
-www/vtiger/themes/bluelagoon/images/btnL3Add-Faded.gif
-www/vtiger/themes/bluelagoon/images/rssDisplayBg.gif
-www/vtiger/themes/bluelagoon/images/report_bg.gif
-www/vtiger/themes/bluelagoon/images/settings_top.gif
-www/vtiger/themes/bluelagoon/images/rssforward.gif
-www/vtiger/themes/bluelagoon/images/cfcurrency.gif
-www/vtiger/themes/bluelagoon/images/notification.gif
-www/vtiger/themes/bluelagoon/images/dash_btm_right.jpg
-www/vtiger/themes/bluelagoon/images/bl_bar.jpg
-www/vtiger/themes/bluelagoon/images/rssframeHdr.gif
-www/vtiger/themes/bluelagoon/images/btnL3Clock.gif
-www/vtiger/themes/bluelagoon/images/dash_scroll_up.jpg
-www/vtiger/themes/bluelagoon/images/taxConfiguration.gif
-www/vtiger/themes/bluelagoon/images/cal_add.gif
-www/vtiger/themes/bluelagoon/images/loginSITopLeft.gif
-www/vtiger/themes/bluelagoon/images/onstar.gif
-www/vtiger/themes/bluelagoon/images/reportsMove.gif
-www/vtiger/themes/bluelagoon/images/cal_next_nav.gif
-www/vtiger/themes/bluelagoon/images/calc_grey_btn.gif
-www/vtiger/themes/bluelagoon/images/btnL3AllMenu-Faded.gif
-www/vtiger/themes/bluelagoon/images/head_end.gif
-www/vtiger/themes/bluelagoon/images/hdrNameBg.gif
-www/vtiger/themes/bluelagoon/images/plsWaitAnimated.gif
-www/vtiger/themes/bluelagoon/images/calc_bottom_left.gif
-www/vtiger/themes/bluelagoon/images/lvtNavBtnPrev.gif
-www/vtiger/themes/bluelagoon/images/dash_sel_top.jpg
-www/vtiger/themes/bluelagoon/images/migrate.gif
-www/vtiger/themes/bluelagoon/images/dash_top.jpg
-www/vtiger/themes/bluelagoon/images/showsubmenu.gif
-www/vtiger/themes/bluelagoon/images/Rolesadd.gif
-www/vtiger/themes/bluelagoon/images/Opportunities.gif
-www/vtiger/themes/bluelagoon/images/del.gif
-www/vtiger/themes/bluelagoon/images/movecol_del_over.gif
-www/vtiger/themes/bluelagoon/images/skype.gif
-www/vtiger/themes/bluelagoon/images/prvPrfTopRight.gif
-www/vtiger/themes/bluelagoon/images/rssDisplayBottom.gif
-www/vtiger/themes/bluelagoon/images/pending_left.gif
-www/vtiger/themes/bluelagoon/images/reportsDelete.gif
-www/vtiger/themes/bluelagoon/images/end_disabled.gif
-www/vtiger/themes/bluelagoon/images/Thumbs.db
-www/vtiger/themes/bluelagoon/images/announ.gif
-www/vtiger/themes/bluelagoon/images/HomeBtm.gif
-www/vtiger/themes/bluelagoon/images/tabSeperatorBg.gif
-www/vtiger/themes/bluelagoon/images/set-IcoLoginHistory.gif
-www/vtiger/themes/bluelagoon/images/cal_title.jpg
-www/vtiger/themes/bluelagoon/images/bottom_left.jpg
-www/vtiger/themes/bluelagoon/images/calc_bottom_right.gif
-www/vtiger/themes/bluelagoon/images/Settings.gif
-www/vtiger/themes/bluelagoon/images/myTickets.gif
-www/vtiger/themes/bluelagoon/images/settingsActBtnDuplicate.gif
-www/vtiger/themes/bluelagoon/images/plus.gif
-www/vtiger/themes/bluelagoon/images/btnL3Tracker.gif
-www/vtiger/themes/bluelagoon/images/free.gif
-www/vtiger/themes/bluelagoon/images/system.gif
-www/vtiger/themes/bluelagoon/images/search.gif
-www/vtiger/themes/bluelagoon/images/tbarImport-Faded.gif
-www/vtiger/themes/bluelagoon/images/left_arc.gif
-www/vtiger/themes/bluelagoon/images/dash_sel_chart.jpg
-www/vtiger/themes/bluelagoon/images/settingsMTBg.gif
-www/vtiger/themes/bluelagoon/images/calc_top_left.gif
-www/vtiger/themes/bluelagoon/images/backupserver.gif
-www/vtiger/themes/bluelagoon/images/report_newHdr.gif
-www/vtiger/themes/bluelagoon/images/menu_off_end.gif
-www/vtiger/themes/bluelagoon/images/check_mail.gif
-www/vtiger/themes/bluelagoon/images/upcomingEvents.gif
-www/vtiger/themes/bluelagoon/images/pendingEvents.gif
-www/vtiger/themes/bluelagoon/images/ico-roles.gif
-www/vtiger/themes/bluelagoon/images/dashSelectBg.gif
-www/vtiger/themes/bluelagoon/images/scroll_right_down.gif
-www/vtiger/themes/bluelagoon/images/menu_on_start.gif
-www/vtiger/themes/bluelagoon/images/calc_blue_btn.gif
-www/vtiger/themes/bluelagoon/images/uparrow.gif
-www/vtiger/themes/bluelagoon/images/tbarPrivateChat.gif
-www/vtiger/themes/bluelagoon/images/tblPro1ColBg.gif
-www/vtiger/themes/bluelagoon/images/Accounts.gif
-www/vtiger/themes/bluelagoon/images/blank.gif
-www/vtiger/themes/bluelagoon/images/tagcloud_03.gif
-www/vtiger/themes/bluelagoon/images/report_bottom.gif
-www/vtiger/themes/bluelagoon/images/calc_logo.gif
-www/vtiger/themes/bluelagoon/images/btnL3Calendar-Faded.gif
-www/vtiger/themes/bluelagoon/images/pricebook.gif
-www/vtiger/themes/bluelagoon/images/set-IcoTwoTabConfig.gif
-www/vtiger/themes/bluelagoon/images/picklistEditor.gif
-www/vtiger/themes/bluelagoon/images/prvPrfTopLeft.gif
-www/vtiger/themes/bluelagoon/images/dash_screw.gif
-www/vtiger/themes/bluelagoon/images/basicSearchLens.gif
-www/vtiger/themes/bluelagoon/images/rssimage.gif
-www/vtiger/themes/bluelagoon/images/Home_15.gif
-www/vtiger/themes/bluelagoon/images/calBottomBg.gif
-www/vtiger/themes/bluelagoon/images/Tickets.gif
-www/vtiger/themes/bluelagoon/images/dash_unsel_chart.jpg
-www/vtiger/themes/bluelagoon/images/arrow_down.gif
-www/vtiger/themes/bluelagoon/images/cal16x16Call.jpg
-www/vtiger/themes/bluelagoon/images/phone.gif
-www/vtiger/themes/bluelagoon/images/movecol_del_down.gif
-www/vtiger/themes/bluelagoon/images/cal16x16MeetingAdd.jpg
-www/vtiger/themes/bluelagoon/images/ViewTemplate.gif
-www/vtiger/themes/bluelagoon/images/inventory.gif
-www/vtiger/themes/bluelagoon/images/cal16x16Shared.jpg
-www/vtiger/themes/bluelagoon/images/calTopLeft.gif
-www/vtiger/themes/bluelagoon/images/movecol_up_over.gif
-www/vtiger/themes/bluelagoon/images/upcoming_right.gif
-www/vtiger/themes/bluelagoon/images/pending_right.gif
-www/vtiger/themes/bluelagoon/images/calc_middle_right.gif
-www/vtiger/themes/bluelagoon/images/arrow.jpg
-www/vtiger/themes/bluelagoon/images/close.gif
-www/vtiger/themes/bluelagoon/images/titleRSSReader.gif
-www/vtiger/themes/bluelagoon/images/Meeting.gif
-www/vtiger/themes/bluelagoon/images/cal_Others.gif
-www/vtiger/themes/bluelagoon/images/webmail_trash.gif
-www/vtiger/themes/bluelagoon/images/dash_sel_left.jpg
-www/vtiger/themes/bluelagoon/images/titleMailClient.gif
-www/vtiger/themes/bluelagoon/images/cal_sharing.jpg
-www/vtiger/themes/bluelagoon/images/rssDisplayTopRight.gif
-www/vtiger/themes/bluelagoon/images/myGroupAllocation.gif
-www/vtiger/themes/bluelagoon/images/small_left.gif
-www/vtiger/themes/bluelagoon/images/cal16x16Meeting.jpg
-www/vtiger/themes/bluelagoon/images/myTopOpenPotentials.gif
-www/vtiger/themes/bluelagoon/images/webmail_settings.gif
-www/vtiger/themes/bluelagoon/images/btnL3Clock-Faded.gif
-www/vtiger/themes/bluelagoon/images/tbarExport-Faded.gif
-www/vtiger/themes/bluelagoon/images/editfield.gif
-www/vtiger/themes/bluelagoon/images/calc_red_btn.gif
-www/vtiger/themes/bluelagoon/images/print.gif
-www/vtiger/themes/bluelagoon/images/rssdelete.gif
-www/vtiger/themes/bluelagoon/images/movecol_up.gif
-www/vtiger/themes/bluelagoon/images/RolesEdit.gif
-www/vtiger/themes/bluelagoon/images/url.gif
-www/vtiger/themes/bluelagoon/images/webmail_downarrow.gif
-www/vtiger/themes/bluelagoon/images/tbarChat.gif
-www/vtiger/themes/bluelagoon/images/spacer.gif
-www/vtiger/themes/bluelagoon/images/topbar.gif
-www/vtiger/themes/bluelagoon/images/checkbox.gif
-www/vtiger/themes/bluelagoon/images/rssDisplayLeft.gif
-www/vtiger/themes/bluelagoon/images/webmail_root.gif
-www/vtiger/themes/bluelagoon/images/previousRecord.gif
-www/vtiger/themes/bluelagoon/images/hdrTabBg.gif
-www/vtiger/themes/bluelagoon/images/dash_btm_center.jpg
-www/vtiger/themes/bluelagoon/images/myTopSalesOrders.gif
-www/vtiger/themes/bluelagoon/images/delete.gif
-www/vtiger/themes/bluelagoon/images/disabled.gif
-www/vtiger/themes/bluelagoon/images/rssroot.gif
-www/vtiger/themes/bluelagoon/images/date.gif
-www/vtiger/themes/bluelagoon/images/showDown.gif
-www/vtiger/themes/bluelagoon/images/webmail_header.gif
-www/vtiger/themes/bluelagoon/images/audit.gif
-www/vtiger/themes/bluelagoon/images/calc_res_tr.gif
-www/vtiger/themes/bluelagoon/images/calNavNext.gif
-www/vtiger/themes/bluelagoon/images/logout.gif
-www/vtiger/themes/bluelagoon/images/tbarExport.gif
-www/vtiger/themes/bluelagoon/images/strikeline.gif
-www/vtiger/themes/bluelagoon/images/cal16x16ToDoAdd.jpg
-www/vtiger/themes/bluelagoon/images/public.gif
-www/vtiger/themes/bluelagoon/images/calSep.gif
-www/vtiger/themes/bluelagoon/images/todaybg.gif
-www/vtiger/themes/bluelagoon/images/calc_res_tl.gif
-www/vtiger/themes/bluelagoon/images/movecol_up_disabled.gif
-www/vtiger/themes/bluelagoon/images/menu_on_tile.gif
-www/vtiger/themes/bluelagoon/images/help_icon.gif
-www/vtiger/themes/bluelagoon/images/calc_back_btn.gif
-www/vtiger/themes/bluelagoon/images/bottom_right.jpg
-www/vtiger/themes/bluelagoon/images/calc_res_tc.gif
-www/vtiger/themes/bluelagoon/images/busy.gif
-www/vtiger/themes/bluelagoon/images/right_arc.gif
-www/vtiger/themes/bluelagoon/images/Tasks.gif
-www/vtiger/themes/bluelagoon/images/advancedSearchLens.gif
-www/vtiger/themes/bluelagoon/images/cal_sel.jpg
-www/vtiger/themes/bluelagoon/images/cal_add.jpg
-www/vtiger/themes/bluelagoon/images/start_disabled.gif
-www/vtiger/themes/bluelagoon/images/reload.gif
-www/vtiger/themes/bluelagoon/images/top_left.jpg
-www/vtiger/themes/bluelagoon/images/mailSubHeaderBg.gif
-www/vtiger/themes/bluelagoon/images/calNavPrev.gif
-www/vtiger/themes/bluelagoon/images/calc_top_right.gif
-www/vtiger/themes/bluelagoon/images/showPanelTopBg.gif
-www/vtiger/themes/bluelagoon/images/private.gif
-www/vtiger/themes/bluelagoon/images/yes.gif
-www/vtiger/themes/bluelagoon/images/Leads.gif
-www/vtiger/themes/bluelagoon/images/mailTitle.jpg
-www/vtiger/themes/bluelagoon/images/settingsActBtnDelete.gif
-www/vtiger/themes/bluelagoon/images/minus.gif
-www/vtiger/themes/bluelagoon/images/calBottomLeft.gif
-www/vtiger/themes/bluelagoon/images/no.gif
-www/vtiger/themes/bluelagoon/images/prvPrfSelectedTick.gif
-www/vtiger/themes/bluelagoon/images/prvPrfHdrArrow.gif
-www/vtiger/themes/bluelagoon/images/calc_canc_btn.gif
-www/vtiger/themes/bluelagoon/images/tabular.gif
-www/vtiger/themes/bluelagoon/images/loginTopShade.gif
-www/vtiger/themes/bluelagoon/images/rssDisplaySpeaker.gif
-www/vtiger/themes/bluelagoon/images/calc_res_br.gif
-www/vtiger/themes/bluelagoon/images/expand.gif
-www/vtiger/themes/bluelagoon/images/cal_Hdr.gif
-www/vtiger/themes/bluelagoon/images/dboardMatrixView.gif
-www/vtiger/themes/bluelagoon/images/RolesMove.gif
-www/vtiger/themes/bluelagoon/images/cal_clock.jpg
-www/vtiger/themes/bluelagoon/images/calc_res_bl.gif
-www/vtiger/themes/bluelagoon/images/clear_field.gif
-www/vtiger/themes/bluelagoon/images/vtiger.jpg
-www/vtiger/themes/bluelagoon/images/about_btm.jpg
-www/vtiger/themes/bluelagoon/images/lvtNavBtnFirst.gif
-www/vtiger/themes/bluelagoon/images/company.gif
-www/vtiger/themes/bluelagoon/images/movecol_down.gif
-www/vtiger/themes/bluelagoon/images/btnL3Search.gif
-www/vtiger/themes/bluelagoon/images/btnL3Add.gif
-www/vtiger/themes/bluelagoon/images/calc_res_mr.gif
-www/vtiger/themes/bluelagoon/images/dashBottomBg.gif
-www/vtiger/themes/bluelagoon/images/cal_hdr.jpg
-www/vtiger/themes/bluelagoon/images/prvPrfBottomRight.gif
-www/vtiger/themes/bluelagoon/images/btnL3Calendar.gif
-www/vtiger/themes/bluelagoon/images/tbarImport.gif
-www/vtiger/themes/bluelagoon/images/tabRht.gif
-www/vtiger/themes/bluelagoon/images/tbarPublicChat.gif
-www/vtiger/themes/bluelagoon/loginheader.php
-www/vtiger/themes/bluelagoon/layout_utils.php
-www/vtiger/themes/bluelagoon/header.php
-www/vtiger/themes/bluelagoon/footer.php
-www/vtiger/themes/bluelagoon/style.css
-www/vtiger/themes/bluelagoon/loginheader.html
-www/vtiger/themes/alphagrey/images/prvPrfBottomRight.gif
-www/vtiger/themes/alphagrey/images/mailmarge.gif
-www/vtiger/themes/alphagrey/images/picklistEditor.gif
-www/vtiger/themes/alphagrey/images/tabSelectedBg.gif
-www/vtiger/themes/alphagrey/images/dash_sel_btm.jpg
-www/vtiger/themes/alphagrey/images/popupHdr.jpg
-www/vtiger/themes/alphagrey/images/rssOnHeader.gif
-www/vtiger/themes/alphagrey/images/myTopInvoices.gif
-www/vtiger/themes/alphagrey/images/check_mail.gif
-www/vtiger/themes/alphagrey/images/Contacts.gif
-www/vtiger/themes/alphagrey/images/Leads.gif
-www/vtiger/themes/alphagrey/images/lvtNavBtnLast.gif
-www/vtiger/themes/alphagrey/images/mailTitle.jpg
-www/vtiger/themes/alphagrey/images/minus.gif
-www/vtiger/themes/alphagrey/images/date.gif
-www/vtiger/themes/alphagrey/images/clock_bg.gif
-www/vtiger/themes/alphagrey/images/moduleSelectorBg.gif
-www/vtiger/themes/alphagrey/images/tbarSettings.gif
-www/vtiger/themes/alphagrey/images/top_right.jpg
-www/vtiger/themes/alphagrey/images/myTopSalesOrders.gif
-www/vtiger/themes/alphagrey/images/rssframeHdr.gif
-www/vtiger/themes/alphagrey/images/btnL3Tracker-Faded.gif
-www/vtiger/themes/alphagrey/images/cal16x16Shared.jpg
-www/vtiger/themes/alphagrey/images/dboardNormalView.gif
-www/vtiger/themes/alphagrey/images/upcoming_right.gif
-www/vtiger/themes/alphagrey/images/cal16x16CallAdd.jpg
-www/vtiger/themes/alphagrey/images/reportsMove.gif
-www/vtiger/themes/alphagrey/images/movecol_down_over.gif
-www/vtiger/themes/alphagrey/images/arrow_up.gif
-www/vtiger/themes/alphagrey/images/RolesMove.gif
-www/vtiger/themes/alphagrey/images/search.gif
-www/vtiger/themes/alphagrey/images/titleRSSReader.gif
-www/vtiger/themes/alphagrey/images/scroll_right.gif
-www/vtiger/themes/alphagrey/images/spacer.gif
-www/vtiger/themes/alphagrey/images/calNavNext.gif
-www/vtiger/themes/alphagrey/images/topbar.gif
-www/vtiger/themes/alphagrey/images/settingsSelUIBg.gif
-www/vtiger/themes/alphagrey/images/prvPrfBottomLeft.gif
-www/vtiger/themes/alphagrey/images/calendar.gif
-www/vtiger/themes/alphagrey/images/dash_name.jpg
-www/vtiger/themes/alphagrey/images/url.gif
-www/vtiger/themes/alphagrey/images/showsubmenu.gif
-www/vtiger/themes/alphagrey/images/rssDisplayBg.gif
-www/vtiger/themes/alphagrey/images/cal_event.jpg
-www/vtiger/themes/alphagrey/images/settings_top.gif
-www/vtiger/themes/alphagrey/images/notification.gif
-www/vtiger/themes/alphagrey/images/busy.gif
-www/vtiger/themes/alphagrey/images/delete.gif
-www/vtiger/themes/alphagrey/images/topBg.gif
-www/vtiger/themes/alphagrey/images/menu_root.gif
-www/vtiger/themes/alphagrey/images/btnAlexa.gif
-www/vtiger/themes/alphagrey/images/summarize.gif
-www/vtiger/themes/alphagrey/images/tabUnSelectedBg.gif
-www/vtiger/themes/alphagrey/images/Tickets.gif
-www/vtiger/themes/alphagrey/images/todaybg.gif
-www/vtiger/themes/alphagrey/images/cal16x16ToDo.jpg
-www/vtiger/themes/alphagrey/images/upcoming_left.gif
-www/vtiger/themes/alphagrey/images/cal_next_nav.gif
-www/vtiger/themes/alphagrey/images/bookMark.gif
-www/vtiger/themes/alphagrey/images/bottom_left.jpg
-www/vtiger/themes/alphagrey/images/Calls.gif
-www/vtiger/themes/alphagrey/images/calc_bottom_center.gif
-www/vtiger/themes/alphagrey/images/Meetings.gif
-www/vtiger/themes/alphagrey/images/scroll_left.gif
-www/vtiger/themes/alphagrey/images/dash_sel_top.jpg
-www/vtiger/themes/alphagrey/images/logout.gif
-www/vtiger/themes/alphagrey/images/public.gif
-www/vtiger/themes/alphagrey/images/rssDisplayLeft.gif
-www/vtiger/themes/alphagrey/images/cal_sel.jpg
-www/vtiger/themes/alphagrey/images/previousRecord.gif
-www/vtiger/themes/alphagrey/images/btnL3Add.gif
-www/vtiger/themes/alphagrey/images/reportsFolderCreate.gif
-www/vtiger/themes/alphagrey/images/pending_left.gif
-www/vtiger/themes/alphagrey/images/previous_disabled.gif
-www/vtiger/themes/alphagrey/images/searching.gif
-www/vtiger/themes/alphagrey/images/ico-profile.gif
-www/vtiger/themes/alphagrey/images/proxy.gif
-www/vtiger/themes/alphagrey/images/dboardMatrixView.gif
-www/vtiger/themes/alphagrey/images/up.gif
-www/vtiger/themes/alphagrey/images/black.png
-www/vtiger/themes/alphagrey/images/webmail_header.gif
-www/vtiger/themes/alphagrey/images/tabular.gif
-www/vtiger/themes/alphagrey/images/movecol_up.gif
-www/vtiger/themes/alphagrey/images/qcBg.gif
-www/vtiger/themes/alphagrey/images/picklist.gif
-www/vtiger/themes/alphagrey/images/reportsCreate.gif
-www/vtiger/themes/alphagrey/images/picklist_hint.gif
-www/vtiger/themes/alphagrey/images/empty.jpg
-www/vtiger/themes/alphagrey/images/cal_Hdr.gif
-www/vtiger/themes/alphagrey/images/site_sel.jpg
-www/vtiger/themes/alphagrey/images/btnL3Tracker.gif
-www/vtiger/themes/alphagrey/images/tagcloud_03.gif
-www/vtiger/themes/alphagrey/images/report_bg.gif
-www/vtiger/themes/alphagrey/images/myUpcoPendAct.gif
-www/vtiger/themes/alphagrey/images/dash_btm.jpg
-www/vtiger/themes/alphagrey/images/Reports_arrow.gif
-www/vtiger/themes/alphagrey/images/settingsMTBg.gif
-www/vtiger/themes/alphagrey/images/company.gif
-www/vtiger/themes/alphagrey/images/calBottomBg.gif
-www/vtiger/themes/alphagrey/images/expand.gif
-www/vtiger/themes/alphagrey/images/rssHeader.gif
-www/vtiger/themes/alphagrey/images/dashSelectBg.gif
-www/vtiger/themes/alphagrey/images/offstar.gif
-www/vtiger/themes/alphagrey/images/collapse.gif
-www/vtiger/themes/alphagrey/images/titleMySites.gif
-www/vtiger/themes/alphagrey/images/vtigerDevDocs.gif
-www/vtiger/themes/alphagrey/images/btnL3Calc-Faded.gif
-www/vtiger/themes/alphagrey/images/hdrNameBg.gif
-www/vtiger/themes/alphagrey/images/site_unsel.jpg
-www/vtiger/themes/alphagrey/images/scroll_left_down.gif
-www/vtiger/themes/alphagrey/images/ogmailserver.gif
-www/vtiger/themes/alphagrey/images/next_disabled.gif
-www/vtiger/themes/alphagrey/images/start_disabled.gif
-www/vtiger/themes/alphagrey/images/vtiger.jpg
-www/vtiger/themes/alphagrey/images/dash_btm_left.jpg
-www/vtiger/themes/alphagrey/images/help.gif
-www/vtiger/themes/alphagrey/images/calc_top_right.gif
-www/vtiger/themes/alphagrey/images/tblPro1ColBg.gif
-www/vtiger/themes/alphagrey/images/text.gif
-www/vtiger/themes/alphagrey/images/orgshar.gif
-www/vtiger/themes/alphagrey/images/loginSIBottomLeft.gif
-www/vtiger/themes/alphagrey/images/rssroot.gif
-www/vtiger/themes/alphagrey/images/showPanelTopBg.gif
-www/vtiger/themes/alphagrey/images/tbarExport.gif
-www/vtiger/themes/alphagrey/images/loginSITopRight.gif
-www/vtiger/themes/alphagrey/images/strikeline.gif
-www/vtiger/themes/alphagrey/images/menu_off_tile.gif
-www/vtiger/themes/alphagrey/images/dashTopBg.gif
-www/vtiger/themes/alphagrey/images/site_hdr.jpg
-www/vtiger/themes/alphagrey/images/calc_mem_btn.gif
-www/vtiger/themes/alphagrey/images/prvPrfHdrArrow.gif
-www/vtiger/themes/alphagrey/images/lvtNavBtnNext.gif
-www/vtiger/themes/alphagrey/images/btnL3AllMenu-Faded.gif
-www/vtiger/themes/alphagrey/images/TopOpenQuotes.gif
-www/vtiger/themes/alphagrey/images/start.gif
-www/vtiger/themes/alphagrey/images/vtbusy.gif
-www/vtiger/themes/alphagrey/images/addrss.gif
-www/vtiger/themes/alphagrey/images/dash_screw.jpg
-www/vtiger/themes/alphagrey/images/enabled.gif
-www/vtiger/themes/alphagrey/images/keyMetrics.gif
-www/vtiger/themes/alphagrey/images/btnL3Search-Faded.gif
-www/vtiger/themes/alphagrey/images/cal_sharing.jpg
-www/vtiger/themes/alphagrey/images/attachment.gif
-www/vtiger/themes/alphagrey/images/compose.gif
-www/vtiger/themes/alphagrey/images/ViewTemplate.gif
-www/vtiger/themes/alphagrey/images/ico-groups.gif
-www/vtiger/themes/alphagrey/images/lvtNavBtnFirst.gif
-www/vtiger/themes/alphagrey/images/vtiger-crm.gif
-www/vtiger/themes/alphagrey/images/head_end.gif
-www/vtiger/themes/alphagrey/images/showPanelTopRight.gif
-www/vtiger/themes/alphagrey/images/calNavPrev.gif
-www/vtiger/themes/alphagrey/images/calc_grey_btn.gif
-www/vtiger/themes/alphagrey/images/head_start.gif
-www/vtiger/themes/alphagrey/images/tbarPublicChat.gif
-www/vtiger/themes/alphagrey/images/aboutUS.jpg
-www/vtiger/themes/alphagrey/images/tbarPrivateChat.gif
-www/vtiger/themes/alphagrey/images/calSep.gif
-www/vtiger/themes/alphagrey/images/taxConfiguration.gif
-www/vtiger/themes/alphagrey/images/lvtNavBtnPrev.gif
-www/vtiger/themes/alphagrey/images/cal_add.jpg
-www/vtiger/themes/alphagrey/images/dash_top.jpg
-www/vtiger/themes/alphagrey/images/ico-roles.gif
-www/vtiger/themes/alphagrey/images/number.gif
-www/vtiger/themes/alphagrey/images/Rolesadd.gif
-www/vtiger/themes/alphagrey/images/next.gif
-www/vtiger/themes/alphagrey/images/settingsActBtnEdit.gif
-www/vtiger/themes/alphagrey/images/del_tag.gif
-www/vtiger/themes/alphagrey/images/Opportunities.gif
-www/vtiger/themes/alphagrey/images/cal16x16Linked.jpg
-www/vtiger/themes/alphagrey/images/end_disabled.gif
-www/vtiger/themes/alphagrey/images/private.gif
-www/vtiger/themes/alphagrey/images/basicSearchLens.gif
-www/vtiger/themes/alphagrey/images/reportsDelete.gif
-www/vtiger/themes/alphagrey/images/terms.gif
-www/vtiger/themes/alphagrey/images/tblPro1BtnHide.gif
-www/vtiger/themes/alphagrey/images/dash_switch_view.jpg
-www/vtiger/themes/alphagrey/images/email.gif
-www/vtiger/themes/alphagrey/images/qcName.gif
-www/vtiger/themes/alphagrey/images/status.gif
-www/vtiger/themes/alphagrey/images/percent.gif
-www/vtiger/themes/alphagrey/images/reload.gif
-www/vtiger/themes/alphagrey/images/set-IcoLoginHistory.gif
-www/vtiger/themes/alphagrey/images/mailHdr.jpg
-www/vtiger/themes/alphagrey/images/Settings.gif
-www/vtiger/themes/alphagrey/images/calc_red_btn.gif
-www/vtiger/themes/alphagrey/images/calc_logo.gif
-www/vtiger/themes/alphagrey/images/movecol_down_down.gif
-www/vtiger/themes/alphagrey/images/right.gif
-www/vtiger/themes/alphagrey/images/tbarImport.gif
-www/vtiger/themes/alphagrey/images/pricebook.gif
-www/vtiger/themes/alphagrey/images/one.gif
-www/vtiger/themes/alphagrey/images/no.gif
-www/vtiger/themes/alphagrey/images/plsWaitAnimated.gif
-www/vtiger/themes/alphagrey/images/settingsActBtnDelete.gif
-www/vtiger/themes/alphagrey/images/movecol_up_over.gif
-www/vtiger/themes/alphagrey/images/left_arc.gif
-www/vtiger/themes/alphagrey/images/showPanelTopLeft.gif
-www/vtiger/themes/alphagrey/images/backupserver.gif
-www/vtiger/themes/alphagrey/images/cal_hdr.jpg
-www/vtiger/themes/alphagrey/images/calc_bottom_right.gif
-www/vtiger/themes/alphagrey/images/free.gif
-www/vtiger/themes/alphagrey/images/menu_off_end.gif
-www/vtiger/themes/alphagrey/images/calAddButtonBg.gif
-www/vtiger/themes/alphagrey/images/left.gif
-www/vtiger/themes/alphagrey/images/calBottomRight.gif
-www/vtiger/themes/alphagrey/images/calc_top_left.gif
-www/vtiger/themes/alphagrey/images/report_newHdr.gif
-www/vtiger/themes/alphagrey/images/webmail_root.gif
-www/vtiger/themes/alphagrey/images/cal12x12Shared.gif
-www/vtiger/themes/alphagrey/images/pendingEvents.gif
-www/vtiger/themes/alphagrey/images/tagCloudBg.gif
-www/vtiger/themes/alphagrey/images/titleMailClient.gif
-www/vtiger/themes/alphagrey/images/migration_sucess.jpg
-www/vtiger/themes/alphagrey/images/custom.gif
-www/vtiger/themes/alphagrey/images/currency.gif
-www/vtiger/themes/alphagrey/images/menu_on_start.gif
-www/vtiger/themes/alphagrey/images/Call.gif
-www/vtiger/themes/alphagrey/images/jump.gif
-www/vtiger/themes/alphagrey/images/cal16x16Meeting.jpg
-www/vtiger/themes/alphagrey/images/Accounts.gif
-www/vtiger/themes/alphagrey/images/tabRht.gif
-www/vtiger/themes/alphagrey/images/calc_blue_btn.gif
-www/vtiger/themes/alphagrey/images/rssDisplayTopLeft.gif
-www/vtiger/themes/alphagrey/images/previous.gif
-www/vtiger/themes/alphagrey/images/cfpicklist.gif
-www/vtiger/themes/alphagrey/images/denied.gif
-www/vtiger/themes/alphagrey/images/scroll_right_down.gif
-www/vtiger/themes/alphagrey/images/cal16x16MeetingAdd.jpg
-www/vtiger/themes/alphagrey/images/report_bottom.gif
-www/vtiger/themes/alphagrey/images/btnL3Calendar-Faded.gif
-www/vtiger/themes/alphagrey/images/loginBg.gif
-www/vtiger/themes/alphagrey/images/set-IcoTwoTabConfig.gif
-www/vtiger/themes/alphagrey/images/cal_nav.gif
-www/vtiger/themes/alphagrey/images/skype.gif
-www/vtiger/themes/alphagrey/images/searchUIBg.gif
-www/vtiger/themes/alphagrey/images/Thumbs.db
-www/vtiger/themes/alphagrey/images/rssimage.gif
-www/vtiger/themes/alphagrey/images/prvPrfTopLeft.gif
-www/vtiger/themes/alphagrey/images/pointer.gif
-www/vtiger/themes/alphagrey/images/tbarChat-Faded.gif
-www/vtiger/themes/alphagrey/images/report_btn.gif
-www/vtiger/themes/alphagrey/images/cal16x16Call.jpg
-www/vtiger/themes/alphagrey/images/nextRecord.gif
-www/vtiger/themes/alphagrey/images/menu_on_tile.gif
-www/vtiger/themes/alphagrey/images/cal_title.jpg
-www/vtiger/themes/alphagrey/images/myTickets.gif
-www/vtiger/themes/alphagrey/images/calc_res_br.gif
-www/vtiger/themes/alphagrey/images/bottom_right.jpg
-www/vtiger/themes/alphagrey/images/RolesEdit.gif
-www/vtiger/themes/alphagrey/images/calc_res_bl.gif
-www/vtiger/themes/alphagrey/images/rssforward.gif
-www/vtiger/themes/alphagrey/images/cfcurrency.gif
-www/vtiger/themes/alphagrey/images/clear_field.gif
-www/vtiger/themes/alphagrey/images/pending_right.gif
-www/vtiger/themes/alphagrey/images/rssDisplayTopRight.gif
-www/vtiger/themes/alphagrey/images/topcut.gif
-www/vtiger/themes/alphagrey/images/btnL3Search.gif
-www/vtiger/themes/alphagrey/images/assign.gif
-www/vtiger/themes/alphagrey/images/Potentials.gif
-www/vtiger/themes/alphagrey/images/menuDnArrow.gif
-www/vtiger/themes/alphagrey/images/hometop.gif
-www/vtiger/themes/alphagrey/images/select.gif
-www/vtiger/themes/alphagrey/images/calc_res_bc.gif
-www/vtiger/themes/alphagrey/images/webmail_trash.gif
-www/vtiger/themes/alphagrey/images/dash_sel_left.jpg
-www/vtiger/themes/alphagrey/images/menu_off_start.gif
-www/vtiger/themes/alphagrey/images/cal16x16ToDoAdd.jpg
-www/vtiger/themes/alphagrey/images/calBg.gif
-www/vtiger/themes/alphagrey/images/shareaccess.gif
-www/vtiger/themes/alphagrey/images/calc_bottom_left.gif
-www/vtiger/themes/alphagrey/images/blank.gif
-www/vtiger/themes/alphagrey/images/topBnr.gif
-www/vtiger/themes/alphagrey/images/loginBottomURL.gif
-www/vtiger/themes/alphagrey/images/movecol_del_over.gif
-www/vtiger/themes/alphagrey/images/bl_bar.jpg
-www/vtiger/themes/alphagrey/images/rssDisplayBottom.gif
-www/vtiger/themes/alphagrey/images/calc_res_tr.gif
-www/vtiger/themes/alphagrey/images/dashBottomBg.gif
-www/vtiger/themes/alphagrey/images/rssDisplayBottomLeft.gif
-www/vtiger/themes/alphagrey/images/end.gif
-www/vtiger/themes/alphagrey/images/tbarChat.gif
-www/vtiger/themes/alphagrey/images/onstar.gif
-www/vtiger/themes/alphagrey/images/migrate.gif
-www/vtiger/themes/alphagrey/images/checkbox.gif
-www/vtiger/themes/alphagrey/images/phone.gif
-www/vtiger/themes/alphagrey/images/settingsActBtnDuplicate.gif
-www/vtiger/themes/alphagrey/images/plus.gif
-www/vtiger/themes/alphagrey/images/level2TabBg.gif
-www/vtiger/themes/alphagrey/images/layerPopupBg.gif
-www/vtiger/themes/alphagrey/images/calc_black_btn.gif
-www/vtiger/themes/alphagrey/images/calc_res_tl.gif
-www/vtiger/themes/alphagrey/images/inventory.gif
-www/vtiger/themes/alphagrey/images/movecol_down_disabled.gif
-www/vtiger/themes/alphagrey/images/primeTopBg.gif
-www/vtiger/themes/alphagrey/images/hdrTabBg.gif
-www/vtiger/themes/alphagrey/images/small_right.gif
-www/vtiger/themes/alphagrey/images/Quotes.gif
-www/vtiger/themes/alphagrey/images/tbarImport-Faded.gif
-www/vtiger/themes/alphagrey/images/disabled.gif
-www/vtiger/themes/alphagrey/images/arrow.jpg
-www/vtiger/themes/alphagrey/images/close.gif
-www/vtiger/themes/alphagrey/images/HomeBtm.gif
-www/vtiger/themes/alphagrey/images/rss.gif
-www/vtiger/themes/alphagrey/images/btnL3Add-Faded.gif
-www/vtiger/themes/alphagrey/images/calc_res_tc.gif
-www/vtiger/themes/alphagrey/images/showDown.gif
-www/vtiger/themes/alphagrey/images/dash_btm_right.jpg
-www/vtiger/themes/alphagrey/images/dash_scroll_up.jpg
-www/vtiger/themes/alphagrey/images/loginSITopLeft.gif
-www/vtiger/themes/alphagrey/images/announ.gif
-www/vtiger/themes/alphagrey/images/rssDisplayBottomRight.gif
-www/vtiger/themes/alphagrey/images/movecol_up_disabled.gif
-www/vtiger/themes/alphagrey/images/advancedSearchLens.gif
-www/vtiger/themes/alphagrey/images/dash_down_arrow.jpg
-www/vtiger/themes/alphagrey/images/RolesDelete.gif
-www/vtiger/themes/alphagrey/images/system.gif
-www/vtiger/themes/alphagrey/images/editfield.gif
-www/vtiger/themes/alphagrey/images/del.gif
-www/vtiger/themes/alphagrey/images/cal_clock.jpg
-www/vtiger/themes/alphagrey/images/print.gif
-www/vtiger/themes/alphagrey/images/rssdelete.gif
-www/vtiger/themes/alphagrey/images/calc_back_btn.gif
-www/vtiger/themes/alphagrey/images/about_btm.jpg
-www/vtiger/themes/alphagrey/images/dash_btm_center.jpg
-www/vtiger/themes/alphagrey/images/uparrow.gif
-www/vtiger/themes/alphagrey/images/prvPrfSelectedTick.gif
-www/vtiger/themes/alphagrey/images/dash_screw.gif
-www/vtiger/themes/alphagrey/images/prvPrfTopRight.gif
-www/vtiger/themes/alphagrey/images/dash_unsel_chart.jpg
-www/vtiger/themes/alphagrey/images/top_left.jpg
-www/vtiger/themes/alphagrey/images/btnL3Clock.gif
-www/vtiger/themes/alphagrey/images/arrow_down.gif
-www/vtiger/themes/alphagrey/images/calc_res_mr.gif
-www/vtiger/themes/alphagrey/images/btnL3Calc.gif
-www/vtiger/themes/alphagrey/images/movecol_del_down.gif
-www/vtiger/themes/alphagrey/images/movecol_up_down.gif
-www/vtiger/themes/alphagrey/images/tabSeperatorBg.gif
-www/vtiger/themes/alphagrey/images/rssDisplayRight.gif
-www/vtiger/themes/alphagrey/images/Home_15.gif
-www/vtiger/themes/alphagrey/images/calc_middle_right.gif
-www/vtiger/themes/alphagrey/images/calTopLeft.gif
-www/vtiger/themes/alphagrey/images/calc_res_ml.gif
-www/vtiger/themes/alphagrey/images/calBottomLeft.gif
-www/vtiger/themes/alphagrey/images/composeMail.jpg
-www/vtiger/themes/alphagrey/images/yes.gif
-www/vtiger/themes/alphagrey/images/calc_canc_btn.gif
-www/vtiger/themes/alphagrey/images/loginTopShade.gif
-www/vtiger/themes/alphagrey/images/cal_prev_nav.gif
-www/vtiger/themes/alphagrey/images/myTopOpenPotentials.gif
-www/vtiger/themes/alphagrey/images/webmail_uparrow.gif
-www/vtiger/themes/alphagrey/images/cal_add.gif
-www/vtiger/themes/alphagrey/images/ico-users.gif
-www/vtiger/themes/alphagrey/images/btnL3AllMenu.gif
-www/vtiger/themes/alphagrey/images/dash_sel_chart.jpg
-www/vtiger/themes/alphagrey/images/audit.gif
-www/vtiger/themes/alphagrey/images/menu_on_end.gif
-www/vtiger/themes/alphagrey/images/cal_Others.gif
-www/vtiger/themes/alphagrey/images/upcomingEvents.gif
-www/vtiger/themes/alphagrey/images/movecol_down.gif
-www/vtiger/themes/alphagrey/images/calTopRight.gif
-www/vtiger/themes/alphagrey/images/myGroupAllocation.gif
-www/vtiger/themes/alphagrey/images/Meeting.gif
-www/vtiger/themes/alphagrey/images/movecol_del.gif
-www/vtiger/themes/alphagrey/images/rssDisplaySpeaker.gif
-www/vtiger/themes/alphagrey/images/small_left.gif
-www/vtiger/themes/alphagrey/images/btnL3Calendar.gif
-www/vtiger/themes/alphagrey/images/mailSubHeaderBg.gif
-www/vtiger/themes/alphagrey/images/webmail_settings.gif
-www/vtiger/themes/alphagrey/images/help_icon.gif
-www/vtiger/themes/alphagrey/images/btnL3Clock-Faded.gif
-www/vtiger/themes/alphagrey/images/tbarExport-Faded.gif
-www/vtiger/themes/alphagrey/images/tagCloudName.gif
-www/vtiger/themes/alphagrey/images/currencydelete.gif
-www/vtiger/themes/alphagrey/images/loginSIBottomRight.gif
-www/vtiger/themes/alphagrey/images/webmail_downarrow.gif
-www/vtiger/themes/alphagrey/images/loginBottomBg.gif
-www/vtiger/themes/alphagrey/images/rssDisplayTop.gif
-www/vtiger/themes/alphagrey/images/3hdrTabBg.gif
-www/vtiger/themes/alphagrey/images/myTopAccounts.gif
-www/vtiger/themes/alphagrey/images/Tasks.gif
-www/vtiger/themes/alphagrey/images/right_arc.gif
-www/vtiger/themes/alphagrey/images/dash_top_shadow.jpg
-www/vtiger/themes/alphagrey/header.php
-www/vtiger/themes/alphagrey/footer.php
-www/vtiger/themes/alphagrey/style.css
-www/vtiger/themes/alphagrey/layout_utils.php
-www/vtiger/themes/alphagrey/loginheader.html
-www/vtiger/themes/alphagrey/loginheader.php
-www/vtiger/themes/images/loginTopHeaderBg.gif
-www/vtiger/themes/images/vtiger-paw.jpg
-www/vtiger/themes/images/loginTopHeaderName.gif
-www/vtiger/themes/images/loginBottomShadowRight.gif
-www/vtiger/themes/images/loginSignInShade.gif
-www/vtiger/themes/images/vtiger.jpg
-www/vtiger/themes/images/loginBtnSignIn.gif
-www/vtiger/themes/images/loginPromoText.gif
-www/vtiger/themes/images/loginBottomShadowBg.gif
-www/vtiger/themes/images/loginTopVersion.gif
-www/vtiger/themes/images/loginSignIn.gif
-www/vtiger/themes/images/loginBottomShadowLeft.gif
-www/vtiger/Image/Graph/Layout/Horizontal.php
-www/vtiger/Image/Graph/Layout/Vertical.php
-www/vtiger/Image/Graph/Layout/Matrix.php
-www/vtiger/Image/Graph/Fill/Gradient.php
-www/vtiger/Image/Graph/Fill/Image.php
-www/vtiger/Image/Graph/Fill/Array.php
-www/vtiger/Image/Graph/Images/Icons/pinpointr.png
-www/vtiger/Image/Graph/Images/Icons/pinpoint.png
-www/vtiger/Image/Graph/Images/Maps/README
-www/vtiger/Image/Graph/Axis/Marker/Area.php
-www/vtiger/Image/Graph/Axis/Marker/Line.php
-www/vtiger/Image/Graph/Axis/Logarithmic.php
-www/vtiger/Image/Graph/Axis/Radar.php
-www/vtiger/Image/Graph/Axis/Category.php
-www/vtiger/Image/Graph/Line/Solid.php
-www/vtiger/Image/Graph/Line/Formatted.php
-www/vtiger/Image/Graph/Line/Dashed.php
-www/vtiger/Image/Graph/Line/Dotted.php
-www/vtiger/Image/Graph/Line/Array.php
-www/vtiger/Image/Graph/Dataset/Function.php
-www/vtiger/Image/Graph/Dataset/VectorFunction.php
-www/vtiger/Image/Graph/Dataset/Random.php
-www/vtiger/Image/Graph/Dataset/Sequential.php
-www/vtiger/Image/Graph/Dataset/Trivial.php
-www/vtiger/Image/Graph/DataSelector/Values.php
-www/vtiger/Image/Graph/DataSelector/NoZeros.php
-www/vtiger/Image/Graph/DataSelector/EveryNthPoint.php
-www/vtiger/Image/Graph/Plot/Smoothed/Area.php
-www/vtiger/Image/Graph/Plot/Smoothed/Radar.php
-www/vtiger/Image/Graph/Plot/Smoothed/Bezier.php
-www/vtiger/Image/Graph/Plot/Smoothed/Line.php
-www/vtiger/Image/Graph/Plot/Fit/Line.php
-www/vtiger/Image/Graph/Plot/Radar.php
-www/vtiger/Image/Graph/Plot/Odo.php
-www/vtiger/Image/Graph/Plot/Step.php
-www/vtiger/Image/Graph/Plot/Line.php
-www/vtiger/Image/Graph/Plot/Impulse.php
-www/vtiger/Image/Graph/Plot/Dot.php
-www/vtiger/Image/Graph/Plot/Pie.php
-www/vtiger/Image/Graph/Plot/CandleStick.php
-www/vtiger/Image/Graph/Plot/BoxWhisker.php
-www/vtiger/Image/Graph/Plot/Band.php
-www/vtiger/Image/Graph/Plot/Area.php
-www/vtiger/Image/Graph/Plot/Bar.php
-www/vtiger/Image/Graph/Plotarea/Element.php
-www/vtiger/Image/Graph/Plotarea/Map.php
-www/vtiger/Image/Graph/Plotarea/Radar.php
-www/vtiger/Image/Graph/DataPreprocessor/Formatted.php
-www/vtiger/Image/Graph/DataPreprocessor/Function.php
-www/vtiger/Image/Graph/DataPreprocessor/NumberText.php
-www/vtiger/Image/Graph/DataPreprocessor/Currency.php
-www/vtiger/Image/Graph/DataPreprocessor/Date.php
-www/vtiger/Image/Graph/DataPreprocessor/Array.php
-www/vtiger/Image/Graph/DataPreprocessor/Sequential.php
-www/vtiger/Image/Graph/DataPreprocessor/RomanNumerals.php
-www/vtiger/Image/Graph/Figure/Circle.php
-www/vtiger/Image/Graph/Figure/Polygon.php
-www/vtiger/Image/Graph/Figure/Rectangle.php
-www/vtiger/Image/Graph/Figure/Ellipse.php
-www/vtiger/Image/Graph/Grid/Lines.php
-www/vtiger/Image/Graph/Grid/Bars.php
-www/vtiger/Image/Graph/Grid/Polar.php
-www/vtiger/Image/Graph/Marker/Pointing/Radial.php
-www/vtiger/Image/Graph/Marker/Pointing/Angular.php
-www/vtiger/Image/Graph/Marker/Icon.php
-www/vtiger/Image/Graph/Marker/Pointing.php
-www/vtiger/Image/Graph/Marker/Average.php
-www/vtiger/Image/Graph/Marker/Box.php
-www/vtiger/Image/Graph/Marker/ReversePinpoint.php
-www/vtiger/Image/Graph/Marker/Circle.php
-www/vtiger/Image/Graph/Marker/Star.php
-www/vtiger/Image/Graph/Marker/Array.php
-www/vtiger/Image/Graph/Marker/Cross.php
-www/vtiger/Image/Graph/Marker/Pinpoint.php
-www/vtiger/Image/Graph/Marker/Triangle.php
-www/vtiger/Image/Graph/Marker/Plus.php
-www/vtiger/Image/Graph/Marker/Diamond.php
-www/vtiger/Image/Graph/Marker/Asterisk.php
-www/vtiger/Image/Graph/Marker/Value.php
-www/vtiger/Image/Graph/Marker/Bubble.php
-www/vtiger/Image/Graph/Layout.php
-www/vtiger/Image/Graph/Fill.php
-www/vtiger/Image/Graph/Marker.php
-www/vtiger/Image/Graph/Tool.php
-www/vtiger/Image/Graph/DataPreprocessor.php
-www/vtiger/Image/Graph/Constants.php
-www/vtiger/Image/Graph/Axis.php
-www/vtiger/Image/Graph/Grid.php
-www/vtiger/Image/Graph/Plotarea.php
-www/vtiger/Image/Graph/Title.php
-www/vtiger/Image/Graph/Logo.php
-www/vtiger/Image/Graph/Config.php
-www/vtiger/Image/Graph/Element.php
-www/vtiger/Image/Graph/DataSelector.php
-www/vtiger/Image/Graph/Legend.php
-www/vtiger/Image/Graph/Dataset.php
-www/vtiger/Image/Graph/Common.php
-www/vtiger/Image/Graph/Plot.php
-www/vtiger/Image/Graph/Simple.php
-www/vtiger/Image/Graph/Font.php
-www/vtiger/Image/Canvas/GD/JPG.php
-www/vtiger/Image/Canvas/GD/PNG.php
-www/vtiger/Image/Canvas/Fonts/Vera.ttf
-www/vtiger/Image/Canvas/Fonts/VeraSe.ttf
-www/vtiger/Image/Canvas/Fonts/VeraBd.ttf
-www/vtiger/Image/Canvas/Fonts/VeraMono.ttf
-www/vtiger/Image/Canvas/Fonts/VeraBI.ttf
-www/vtiger/Image/Canvas/Fonts/README
-www/vtiger/Image/Canvas/Fonts/VeraSeBd.ttf
-www/vtiger/Image/Canvas/Fonts/fontmap.txt
-www/vtiger/Image/Canvas/Fonts/VeraMoBd.ttf
-www/vtiger/Image/Canvas/Fonts/VeraIt.ttf
-www/vtiger/Image/Canvas/Fonts/VeraMoBI.ttf
-www/vtiger/Image/Canvas/Fonts/VeraCopyright.txt
-www/vtiger/Image/Canvas/Fonts/VeraMoIt.ttf
-www/vtiger/Image/Canvas/GD.php
-www/vtiger/Image/Canvas/WithMap.php
-www/vtiger/Image/Canvas/SVG.php
-www/vtiger/Image/Canvas/PDF.php
-www/vtiger/Image/Canvas/Tool.php
-www/vtiger/Image/Canvas/Color.php
-www/vtiger/Image/Canvas/ImageMap.php
-www/vtiger/Image/Graph.php
-www/vtiger/Image/Color.php
-www/vtiger/Image/Canvas.php
-www/vtiger/database/DatabaseConnection.php
-www/vtiger/data/SugarBean.php
-www/vtiger/data/Tracker.php
-www/vtiger/data/CRMEntity.php
-www/vtiger/LICENSE_AGREEMENT.txt
-www/vtiger/LICENSE.txt
-www/vtiger/DEPENDENCIES.txt
-www/vtiger/vtigerversion.php
-www/vtiger/Copyright.txt
-www/vtiger/vtigerservice.php
-www/vtiger/tabdata.php
-www/vtiger/phprint.php
-www/vtiger/parent_tabdata.php
-www/vtiger/log4php_1.properties
-www/vtiger/log4php.properties
-www/vtiger/install.php
-www/vtiger/index.php
-www/vtiger/graph.php
-www/vtiger/getCompanyProfile.php
-www/vtiger/copyright.html
-www/vtiger/connection.php
-www/vtiger/config.template.php
-www/vtiger/config.php
-www/vtiger/config.inc.php
-www/vtiger/config.db.php
-www/vtiger/Smarty_setup.php
-www/vtiger/SendReminder.php
-www/vtiger/Release_Notes.html
-www/vtiger/README.txt
-www/vtiger/Popup.php
-www/vtiger/PEAR.php
-
-@dirrm www/vtiger/user_privileges
-@dirrm www/vtiger/themes/woodspice/images
-@dirrm www/vtiger/themes/woodspice
-@dirrm www/vtiger/themes/images
-@dirrm www/vtiger/themes/bluelagoon/images
-@dirrm www/vtiger/themes/bluelagoon
-@dirrm www/vtiger/themes/alphagrey/images
-@dirrm www/vtiger/themes/alphagrey
-@dirrm www/vtiger/themes
-@dirrm www/vtiger/test/wordtemplatedownload
-@dirrm www/vtiger/test/user
-@dirrm www/vtiger/test/upload
-@dirrm www/vtiger/test/product
-@dirrm www/vtiger/test/logo
-@dirrm www/vtiger/test/contact
-@dirrm www/vtiger/test
-@dirrm www/vtiger/storage
-@dirrm www/vtiger/soap
-@dirrm www/vtiger/schema
-@dirrm www/vtiger/pkg/php
-@dirrm www/vtiger/pkg/license
-@dirrm www/vtiger/pkg/bin
-@dirrm www/vtiger/pkg/apache/conf
-@dirrm www/vtiger/pkg/apache/bin
-@dirrm www/vtiger/pkg/apache
-@dirrm www/vtiger/pkg
-@dirrm www/vtiger/modules/uploads/language
-@dirrm www/vtiger/modules/uploads
-@dirrm www/vtiger/modules/imports/Excel
-@dirrm www/vtiger/modules/imports
-@dirrm www/vtiger/modules/Yahoo/language
-@dirrm www/vtiger/modules/Yahoo/images
-@dirrm www/vtiger/modules/Yahoo
-@dirrm www/vtiger/modules/Webmails/tmp
-@dirrm www/vtiger/modules/Webmails/language
-@dirrm www/vtiger/modules/Webmails/js
-@dirrm www/vtiger/modules/Webmails/images
-@dirrm www/vtiger/modules/Webmails
-@dirrm www/vtiger/modules/Vendors/language
-@dirrm www/vtiger/modules/Vendors
-@dirrm www/vtiger/modules/Utilities/language
-@dirrm www/vtiger/modules/Utilities
-@dirrm www/vtiger/modules/Users/language
-@dirrm www/vtiger/modules/Users
-@dirrm www/vtiger/modules/System/templates/classic/images
-@dirrm www/vtiger/modules/System/templates/classic
-@dirrm www/vtiger/modules/System/templates
-@dirrm www/vtiger/modules/System/language
-@dirrm www/vtiger/modules/System/includes/xml
-@dirrm www/vtiger/modules/System/includes/os
-@dirrm www/vtiger/modules/System/includes/mb
-@dirrm www/vtiger/modules/System/includes/lang
-@dirrm www/vtiger/modules/System/includes
-@dirrm www/vtiger/modules/System/images
-@dirrm www/vtiger/modules/System
-@dirrm www/vtiger/modules/Settings/language
-@dirrm www/vtiger/modules/Settings
-@dirrm www/vtiger/modules/SalesOrder/pdf_templates/lastpage
-@dirrm www/vtiger/modules/SalesOrder/pdf_templates
-@dirrm www/vtiger/modules/SalesOrder/language
-@dirrm www/vtiger/modules/SalesOrder
-@dirrm www/vtiger/modules/Rss/language
-@dirrm www/vtiger/modules/Rss
-@dirrm www/vtiger/modules/Reports/language
-@dirrm www/vtiger/modules/Reports
-@dirrm www/vtiger/modules/Quotes/pdf_templates/lastpage
-@dirrm www/vtiger/modules/Quotes/pdf_templates
-@dirrm www/vtiger/modules/Quotes/language
-@dirrm www/vtiger/modules/Quotes
-@dirrm www/vtiger/modules/PurchaseOrder/pdf_templates/lastpage
-@dirrm www/vtiger/modules/PurchaseOrder/pdf_templates
-@dirrm www/vtiger/modules/PurchaseOrder/language
-@dirrm www/vtiger/modules/PurchaseOrder
-@dirrm www/vtiger/modules/Products/language
-@dirrm www/vtiger/modules/Products
-@dirrm www/vtiger/modules/PriceBooks/language
-@dirrm www/vtiger/modules/PriceBooks
-@dirrm www/vtiger/modules/Potentials/language
-@dirrm www/vtiger/modules/Potentials
-@dirrm www/vtiger/modules/Portal/language
-@dirrm www/vtiger/modules/Portal
-@dirrm www/vtiger/modules/Notes/language
-@dirrm www/vtiger/modules/Notes
-@dirrm www/vtiger/modules/Migration/language
-@dirrm www/vtiger/modules/Migration/ModifyDatabase
-@dirrm www/vtiger/modules/Migration
-@dirrm www/vtiger/modules/Leads/language
-@dirrm www/vtiger/modules/Leads
-@dirrm www/vtiger/modules/Invoice/pdf_templates/lastpage
-@dirrm www/vtiger/modules/Invoice/pdf_templates
-@dirrm www/vtiger/modules/Invoice/language
-@dirrm www/vtiger/modules/Invoice
-@dirrm www/vtiger/modules/Import/language
-@dirrm www/vtiger/modules/Import
-@dirrm www/vtiger/modules/Home/language
-@dirrm www/vtiger/modules/Home
-@dirrm www/vtiger/modules/HelpDesk/language
-@dirrm www/vtiger/modules/HelpDesk
-@dirrm www/vtiger/modules/Help/language
-@dirrm www/vtiger/modules/Help
-@dirrm www/vtiger/modules/Faq/language
-@dirrm www/vtiger/modules/Faq
-@dirrm www/vtiger/modules/Emails/templates
-@dirrm www/vtiger/modules/Emails/language
-@dirrm www/vtiger/modules/Emails
-@dirrm www/vtiger/modules/Dashboard/language
-@dirrm www/vtiger/modules/Dashboard
-@dirrm www/vtiger/modules/CustomView/language
-@dirrm www/vtiger/modules/CustomView
-@dirrm www/vtiger/modules/Contacts/language
-@dirrm www/vtiger/modules/Contacts/js
-@dirrm www/vtiger/modules/Contacts/imgs
-@dirrm www/vtiger/modules/Contacts
-@dirrm www/vtiger/modules/Campaigns/language
-@dirrm www/vtiger/modules/Campaigns
-@dirrm www/vtiger/modules/Calendar/language
-@dirrm www/vtiger/modules/Calendar
-@dirrm www/vtiger/modules/Administration/language
-@dirrm www/vtiger/modules/Administration
-@dirrm www/vtiger/modules/Activities
-@dirrm www/vtiger/modules/Accounts/language
-@dirrm www/vtiger/modules/Accounts
-@dirrm www/vtiger/modules
-@dirrm www/vtiger/logs
-@dirrm www/vtiger/log4php/xml
-@dirrm www/vtiger/log4php/varia
-@dirrm www/vtiger/log4php/spi
-@dirrm www/vtiger/log4php/or
-@dirrm www/vtiger/log4php/layouts
-@dirrm www/vtiger/log4php/helpers
-@dirrm www/vtiger/log4php/config
-@dirrm www/vtiger/log4php/appenders
-@dirrm www/vtiger/log4php
-@dirrm www/vtiger/license
-@dirrm www/vtiger/jscalendar/lang
-@dirrm www/vtiger/jscalendar
-@dirrm www/vtiger/install
-@dirrm www/vtiger/include/utils
-@dirrm www/vtiger/include/scriptaculous
-@dirrm www/vtiger/include/prototype-1.4.0/test/unit
-@dirrm www/vtiger/include/prototype-1.4.0/test/lib
-@dirrm www/vtiger/include/prototype-1.4.0/test
-@dirrm www/vtiger/include/prototype-1.4.0/src
-@dirrm www/vtiger/include/prototype-1.4.0/lib
-@dirrm www/vtiger/include/prototype-1.4.0/dist
-@dirrm www/vtiger/include/prototype-1.4.0
-@dirrm www/vtiger/include/php_writeexcel
-@dirrm www/vtiger/include/nusoap
-@dirrm www/vtiger/include/magpierss/extlib
-@dirrm www/vtiger/include/magpierss
-@dirrm www/vtiger/include/language
-@dirrm www/vtiger/include/js
-@dirrm www/vtiger/include/install/images
-@dirrm www/vtiger/include/install
-@dirrm www/vtiger/include/images
-@dirrm www/vtiger/include/freetag
-@dirrm www/vtiger/include/fpdf/templates
-@dirrm www/vtiger/include/fpdf/font
-@dirrm www/vtiger/include/fpdf
-@dirrm www/vtiger/include/fckeditor/editor/skins/silver/toolbar
-@dirrm www/vtiger/include/fckeditor/editor/skins/silver/images
-@dirrm www/vtiger/include/fckeditor/editor/skins/silver
-@dirrm www/vtiger/include/fckeditor/editor/skins/default/toolbar
-@dirrm www/vtiger/include/fckeditor/editor/skins/default/images
-@dirrm www/vtiger/include/fckeditor/editor/skins/default
-@dirrm www/vtiger/include/fckeditor/editor/skins
-@dirrm www/vtiger/include/fckeditor/editor/plugins/tablecommands
-@dirrm www/vtiger/include/fckeditor/editor/plugins/placeholder/lang
-@dirrm www/vtiger/include/fckeditor/editor/plugins/placeholder
-@dirrm www/vtiger/include/fckeditor/editor/plugins
-@dirrm www/vtiger/include/fckeditor/editor/lang
-@dirrm www/vtiger/include/fckeditor/editor/js
-@dirrm www/vtiger/include/fckeditor/editor/images
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/js
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons/32
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/images/icons
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/images
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/php
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/perl
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/cfm
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/aspx
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors/asp
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default/connectors
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser/default
-@dirrm www/vtiger/include/fckeditor/editor/filemanager/browser
-@dirrm www/vtiger/include/fckeditor/editor/filemanager
-@dirrm www/vtiger/include/fckeditor/editor/dialog/fck_universalkey
-@dirrm www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts
-@dirrm www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages
-@dirrm www/vtiger/include/fckeditor/editor/dialog/fck_spellerpages
-@dirrm www/vtiger/include/fckeditor/editor/dialog/fck_select
-@dirrm www/vtiger/include/fckeditor/editor/dialog/fck_link
-@dirrm www/vtiger/include/fckeditor/editor/dialog/fck_image
-@dirrm www/vtiger/include/fckeditor/editor/dialog/fck_docprops
-@dirrm www/vtiger/include/fckeditor/editor/dialog/fck_about
-@dirrm www/vtiger/include/fckeditor/editor/dialog/common/images
-@dirrm www/vtiger/include/fckeditor/editor/dialog/common
-@dirrm www/vtiger/include/fckeditor/editor/dialog
-@dirrm www/vtiger/include/fckeditor/editor/css/behaviors
-@dirrm www/vtiger/include/fckeditor/editor/css
-@dirrm www/vtiger/include/fckeditor/editor/_source/internals
-@dirrm www/vtiger/include/fckeditor/editor/_source/globals
-@dirrm www/vtiger/include/fckeditor/editor/_source/commandclasses
-@dirrm www/vtiger/include/fckeditor/editor/_source/classes
-@dirrm www/vtiger/include/fckeditor/editor/_source
-@dirrm www/vtiger/include/fckeditor/editor
-@dirrm www/vtiger/include/fckeditor
-@dirrm www/vtiger/include/db_backup
-@dirrm www/vtiger/include/database
-@dirrm www/vtiger/include/clock
-@dirrm www/vtiger/include/calculator
-@dirrm www/vtiger/include/ListView
-@dirrm www/vtiger/include/Ajax
-@dirrm www/vtiger/include
-@dirrm www/vtiger/database
-@dirrm www/vtiger/data
-@dirrm www/vtiger/cron
-@dirrm www/vtiger/class_http_dir
-@dirrm www/vtiger/class_http
-@dirrm www/vtiger/cache/upload
-@dirrm www/vtiger/cache/import
-@dirrm www/vtiger/cache/images
-@dirrm www/vtiger/cache
-@dirrm www/vtiger/adodb/xsl
-@dirrm www/vtiger/adodb/tests
-@dirrm www/vtiger/adodb/session/old
-@dirrm www/vtiger/adodb/session
-@dirrm www/vtiger/adodb/perf
-@dirrm www/vtiger/adodb/pear/Auth/Container
-@dirrm www/vtiger/adodb/pear/Auth
-@dirrm www/vtiger/adodb/pear
-@dirrm www/vtiger/adodb/lang
-@dirrm www/vtiger/adodb/drivers
-@dirrm www/vtiger/adodb/datadict
-@dirrm www/vtiger/adodb/contrib
-@dirrm www/vtiger/adodb
-@dirrm www/vtiger/Smarty/templates_c
-@dirrm www/vtiger/Smarty/templates/Settings
-@dirrm www/vtiger/Smarty/templates/Inventory
-@dirrm www/vtiger/Smarty/templates
-@dirrm www/vtiger/Smarty/misc
-@dirrm www/vtiger/Smarty/libs/plugins
-@dirrm www/vtiger/Smarty/libs/internals
-@dirrm www/vtiger/Smarty/libs
-@dirrm www/vtiger/Smarty/configs
-@dirrm www/vtiger/Smarty/cache
-@dirrm www/vtiger/Smarty
-@dirrm www/vtiger/Image/Graph/Plotarea
-@dirrm www/vtiger/Image/Graph/Plot/Smoothed
-@dirrm www/vtiger/Image/Graph/Plot/Fit
-@dirrm www/vtiger/Image/Graph/Plot
-@dirrm www/vtiger/Image/Graph/Marker/Pointing
-@dirrm www/vtiger/Image/Graph/Marker
-@dirrm www/vtiger/Image/Graph/Line
-@dirrm www/vtiger/Image/Graph/Layout
-@dirrm www/vtiger/Image/Graph/Images/Maps
-@dirrm www/vtiger/Image/Graph/Images/Icons
-@dirrm www/vtiger/Image/Graph/Images
-@dirrm www/vtiger/Image/Graph/Grid
-@dirrm www/vtiger/Image/Graph/Fill
-@dirrm www/vtiger/Image/Graph/Figure
-@dirrm www/vtiger/Image/Graph/Dataset
-@dirrm www/vtiger/Image/Graph/DataSelector
-@dirrm www/vtiger/Image/Graph/DataPreprocessor
-@dirrm www/vtiger/Image/Graph/Axis/Marker
-@dirrm www/vtiger/Image/Graph/Axis
-@dirrm www/vtiger/Image/Graph
-@dirrm www/vtiger/Image/Canvas/GD
-@dirrm www/vtiger/Image/Canvas/Fonts
-@dirrm www/vtiger/Image/Canvas
-@dirrm www/vtiger/Image
-@dirrm www/vtiger
+%%WWWDIR%%/Image/Canvas/Color.php
+%%WWWDIR%%/Image/Canvas/Fonts/README
+%%WWWDIR%%/Image/Canvas/Fonts/Vera.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/VeraBI.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/VeraBd.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/VeraCopyright.txt
+%%WWWDIR%%/Image/Canvas/Fonts/VeraIt.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/VeraMoBI.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/VeraMoBd.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/VeraMoIt.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/VeraMono.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/VeraSe.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/VeraSeBd.ttf
+%%WWWDIR%%/Image/Canvas/Fonts/fontmap.txt
+%%WWWDIR%%/Image/Canvas/GD/JPG.php
+%%WWWDIR%%/Image/Canvas/GD/PNG.php
+%%WWWDIR%%/Image/Canvas/GD.php
+%%WWWDIR%%/Image/Canvas/ImageMap.php
+%%WWWDIR%%/Image/Canvas/PDF.php
+%%WWWDIR%%/Image/Canvas/SVG.php
+%%WWWDIR%%/Image/Canvas/Tool.php
+%%WWWDIR%%/Image/Canvas/WithMap.php
+%%WWWDIR%%/Image/Canvas.php
+%%WWWDIR%%/Image/Color.php
+%%WWWDIR%%/Image/Graph/Axis/Category.php
+%%WWWDIR%%/Image/Graph/Axis/Logarithmic.php
+%%WWWDIR%%/Image/Graph/Axis/Marker/Area.php
+%%WWWDIR%%/Image/Graph/Axis/Marker/Line.php
+%%WWWDIR%%/Image/Graph/Axis/Radar.php
+%%WWWDIR%%/Image/Graph/Axis.php
+%%WWWDIR%%/Image/Graph/Common.php
+%%WWWDIR%%/Image/Graph/Config.php
+%%WWWDIR%%/Image/Graph/Constants.php
+%%WWWDIR%%/Image/Graph/DataPreprocessor/Array.php
+%%WWWDIR%%/Image/Graph/DataPreprocessor/Currency.php
+%%WWWDIR%%/Image/Graph/DataPreprocessor/Date.php
+%%WWWDIR%%/Image/Graph/DataPreprocessor/Formatted.php
+%%WWWDIR%%/Image/Graph/DataPreprocessor/Function.php
+%%WWWDIR%%/Image/Graph/DataPreprocessor/NumberText.php
+%%WWWDIR%%/Image/Graph/DataPreprocessor/RomanNumerals.php
+%%WWWDIR%%/Image/Graph/DataPreprocessor/Sequential.php
+%%WWWDIR%%/Image/Graph/DataPreprocessor.php
+%%WWWDIR%%/Image/Graph/DataSelector/EveryNthPoint.php
+%%WWWDIR%%/Image/Graph/DataSelector/NoZeros.php
+%%WWWDIR%%/Image/Graph/DataSelector/Values.php
+%%WWWDIR%%/Image/Graph/DataSelector.php
+%%WWWDIR%%/Image/Graph/Dataset/Function.php
+%%WWWDIR%%/Image/Graph/Dataset/Random.php
+%%WWWDIR%%/Image/Graph/Dataset/Sequential.php
+%%WWWDIR%%/Image/Graph/Dataset/Trivial.php
+%%WWWDIR%%/Image/Graph/Dataset/VectorFunction.php
+%%WWWDIR%%/Image/Graph/Dataset.php
+%%WWWDIR%%/Image/Graph/Element.php
+%%WWWDIR%%/Image/Graph/Figure/Circle.php
+%%WWWDIR%%/Image/Graph/Figure/Ellipse.php
+%%WWWDIR%%/Image/Graph/Figure/Polygon.php
+%%WWWDIR%%/Image/Graph/Figure/Rectangle.php
+%%WWWDIR%%/Image/Graph/Fill/Array.php
+%%WWWDIR%%/Image/Graph/Fill/Gradient.php
+%%WWWDIR%%/Image/Graph/Fill/Image.php
+%%WWWDIR%%/Image/Graph/Fill.php
+%%WWWDIR%%/Image/Graph/Font.php
+%%WWWDIR%%/Image/Graph/Grid/Bars.php
+%%WWWDIR%%/Image/Graph/Grid/Lines.php
+%%WWWDIR%%/Image/Graph/Grid/Polar.php
+%%WWWDIR%%/Image/Graph/Grid.php
+%%WWWDIR%%/Image/Graph/Images/Icons/pinpoint.png
+%%WWWDIR%%/Image/Graph/Images/Icons/pinpointr.png
+%%WWWDIR%%/Image/Graph/Images/Maps/README
+%%WWWDIR%%/Image/Graph/Layout/Horizontal.php
+%%WWWDIR%%/Image/Graph/Layout/Matrix.php
+%%WWWDIR%%/Image/Graph/Layout/Vertical.php
+%%WWWDIR%%/Image/Graph/Layout.php
+%%WWWDIR%%/Image/Graph/Legend.php
+%%WWWDIR%%/Image/Graph/Line/Array.php
+%%WWWDIR%%/Image/Graph/Line/Dashed.php
+%%WWWDIR%%/Image/Graph/Line/Dotted.php
+%%WWWDIR%%/Image/Graph/Line/Formatted.php
+%%WWWDIR%%/Image/Graph/Line/Solid.php
+%%WWWDIR%%/Image/Graph/Logo.php
+%%WWWDIR%%/Image/Graph/Marker/Array.php
+%%WWWDIR%%/Image/Graph/Marker/Asterisk.php
+%%WWWDIR%%/Image/Graph/Marker/Average.php
+%%WWWDIR%%/Image/Graph/Marker/Box.php
+%%WWWDIR%%/Image/Graph/Marker/Bubble.php
+%%WWWDIR%%/Image/Graph/Marker/Circle.php
+%%WWWDIR%%/Image/Graph/Marker/Cross.php
+%%WWWDIR%%/Image/Graph/Marker/Diamond.php
+%%WWWDIR%%/Image/Graph/Marker/Icon.php
+%%WWWDIR%%/Image/Graph/Marker/Pinpoint.php
+%%WWWDIR%%/Image/Graph/Marker/Plus.php
+%%WWWDIR%%/Image/Graph/Marker/Pointing/Angular.php
+%%WWWDIR%%/Image/Graph/Marker/Pointing/Radial.php
+%%WWWDIR%%/Image/Graph/Marker/Pointing.php
+%%WWWDIR%%/Image/Graph/Marker/ReversePinpoint.php
+%%WWWDIR%%/Image/Graph/Marker/Star.php
+%%WWWDIR%%/Image/Graph/Marker/Triangle.php
+%%WWWDIR%%/Image/Graph/Marker/Value.php
+%%WWWDIR%%/Image/Graph/Marker.php
+%%WWWDIR%%/Image/Graph/Plot/Area.php
+%%WWWDIR%%/Image/Graph/Plot/Band.php
+%%WWWDIR%%/Image/Graph/Plot/Bar.php
+%%WWWDIR%%/Image/Graph/Plot/BoxWhisker.php
+%%WWWDIR%%/Image/Graph/Plot/CandleStick.php
+%%WWWDIR%%/Image/Graph/Plot/Dot.php
+%%WWWDIR%%/Image/Graph/Plot/Fit/Line.php
+%%WWWDIR%%/Image/Graph/Plot/Impulse.php
+%%WWWDIR%%/Image/Graph/Plot/Line.php
+%%WWWDIR%%/Image/Graph/Plot/Odo.php
+%%WWWDIR%%/Image/Graph/Plot/Pie.php
+%%WWWDIR%%/Image/Graph/Plot/Radar.php
+%%WWWDIR%%/Image/Graph/Plot/Smoothed/Area.php
+%%WWWDIR%%/Image/Graph/Plot/Smoothed/Bezier.php
+%%WWWDIR%%/Image/Graph/Plot/Smoothed/Line.php
+%%WWWDIR%%/Image/Graph/Plot/Smoothed/Radar.php
+%%WWWDIR%%/Image/Graph/Plot/Step.php
+%%WWWDIR%%/Image/Graph/Plot.php
+%%WWWDIR%%/Image/Graph/Plotarea/Element.php
+%%WWWDIR%%/Image/Graph/Plotarea/Map.php
+%%WWWDIR%%/Image/Graph/Plotarea/Radar.php
+%%WWWDIR%%/Image/Graph/Plotarea.php
+%%WWWDIR%%/Image/Graph/Simple.php
+%%WWWDIR%%/Image/Graph/Title.php
+%%WWWDIR%%/Image/Graph/Tool.php
+%%WWWDIR%%/Image/Graph.php
+%%WWWDIR%%/Smarty/COPYING.lib
+%%WWWDIR%%/Smarty/cache/index.html
+%%WWWDIR%%/Smarty/configs/index.html
+%%WWWDIR%%/Smarty/libs/Config_File.class.php
+%%WWWDIR%%/Smarty/libs/Smarty.class.php
+%%WWWDIR%%/Smarty/libs/Smarty_Compiler.class.php
+%%WWWDIR%%/Smarty/libs/debug.tpl
+%%WWWDIR%%/Smarty/libs/internals/core.assemble_plugin_filepath.php
+%%WWWDIR%%/Smarty/libs/internals/core.assign_smarty_interface.php
+%%WWWDIR%%/Smarty/libs/internals/core.create_dir_structure.php
+%%WWWDIR%%/Smarty/libs/internals/core.display_debug_console.php
+%%WWWDIR%%/Smarty/libs/internals/core.get_include_path.php
+%%WWWDIR%%/Smarty/libs/internals/core.get_microtime.php
+%%WWWDIR%%/Smarty/libs/internals/core.get_php_resource.php
+%%WWWDIR%%/Smarty/libs/internals/core.is_secure.php
+%%WWWDIR%%/Smarty/libs/internals/core.is_trusted.php
+%%WWWDIR%%/Smarty/libs/internals/core.load_plugins.php
+%%WWWDIR%%/Smarty/libs/internals/core.load_resource_plugin.php
+%%WWWDIR%%/Smarty/libs/internals/core.process_cached_inserts.php
+%%WWWDIR%%/Smarty/libs/internals/core.process_compiled_include.php
+%%WWWDIR%%/Smarty/libs/internals/core.read_cache_file.php
+%%WWWDIR%%/Smarty/libs/internals/core.rm_auto.php
+%%WWWDIR%%/Smarty/libs/internals/core.rmdir.php
+%%WWWDIR%%/Smarty/libs/internals/core.run_insert_handler.php
+%%WWWDIR%%/Smarty/libs/internals/core.smarty_include_php.php
+%%WWWDIR%%/Smarty/libs/internals/core.write_cache_file.php
+%%WWWDIR%%/Smarty/libs/internals/core.write_compiled_include.php
+%%WWWDIR%%/Smarty/libs/internals/core.write_compiled_resource.php
+%%WWWDIR%%/Smarty/libs/internals/core.write_file.php
+%%WWWDIR%%/Smarty/libs/plugins/block.textformat.php
+%%WWWDIR%%/Smarty/libs/plugins/compiler.assign.php
+%%WWWDIR%%/Smarty/libs/plugins/function.assign_debug_info.php
+%%WWWDIR%%/Smarty/libs/plugins/function.config_load.php
+%%WWWDIR%%/Smarty/libs/plugins/function.counter.php
+%%WWWDIR%%/Smarty/libs/plugins/function.cycle.php
+%%WWWDIR%%/Smarty/libs/plugins/function.debug.php
+%%WWWDIR%%/Smarty/libs/plugins/function.eval.php
+%%WWWDIR%%/Smarty/libs/plugins/function.fetch.php
+%%WWWDIR%%/Smarty/libs/plugins/function.html_checkboxes.php
+%%WWWDIR%%/Smarty/libs/plugins/function.html_image.php
+%%WWWDIR%%/Smarty/libs/plugins/function.html_options.php
+%%WWWDIR%%/Smarty/libs/plugins/function.html_radios.php
+%%WWWDIR%%/Smarty/libs/plugins/function.html_select_date.php
+%%WWWDIR%%/Smarty/libs/plugins/function.html_select_time.php
+%%WWWDIR%%/Smarty/libs/plugins/function.html_table.php
+%%WWWDIR%%/Smarty/libs/plugins/function.mailto.php
+%%WWWDIR%%/Smarty/libs/plugins/function.math.php
+%%WWWDIR%%/Smarty/libs/plugins/function.popup.php
+%%WWWDIR%%/Smarty/libs/plugins/function.popup_init.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.capitalize.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.cat.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.count_characters.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.count_paragraphs.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.count_sentences.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.count_words.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.date_format.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.debug_print_var.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.default.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.escape.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.indent.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.lower.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.nl2br.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.regex_replace.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.replace.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.spacify.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.string_format.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.strip.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.strip_tags.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.truncate.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.upper.php
+%%WWWDIR%%/Smarty/libs/plugins/modifier.wordwrap.php
+%%WWWDIR%%/Smarty/libs/plugins/outputfilter.trimwhitespace.php
+%%WWWDIR%%/Smarty/libs/plugins/shared.escape_special_chars.php
+%%WWWDIR%%/Smarty/libs/plugins/shared.make_timestamp.php
+%%WWWDIR%%/Smarty/misc/smarty_icon.README
+%%WWWDIR%%/Smarty/misc/smarty_icon.gif
+%%WWWDIR%%/Smarty/templates/ActivityDetailView.tpl
+%%WWWDIR%%/Smarty/templates/ActivityEditView.tpl
+%%WWWDIR%%/Smarty/templates/ActivityListView.tpl
+%%WWWDIR%%/Smarty/templates/AddMailAccount.tpl
+%%WWWDIR%%/Smarty/templates/AddProductToPriceBooks.tpl
+%%WWWDIR%%/Smarty/templates/AddProductsToPriceBook.tpl
+%%WWWDIR%%/Smarty/templates/AuditTrailList.tpl
+%%WWWDIR%%/Smarty/templates/Buttons_List.tpl
+%%WWWDIR%%/Smarty/templates/Buttons_List1.tpl
+%%WWWDIR%%/Smarty/templates/Calculator.tpl
+%%WWWDIR%%/Smarty/templates/Clock.tpl
+%%WWWDIR%%/Smarty/templates/ComposeEmail.tpl
+%%WWWDIR%%/Smarty/templates/CreateEmailTemplate.tpl
+%%WWWDIR%%/Smarty/templates/CreateProfile.tpl
+%%WWWDIR%%/Smarty/templates/CreateView.tpl
+%%WWWDIR%%/Smarty/templates/CreateWordTemplate.tpl
+%%WWWDIR%%/Smarty/templates/CumulStatistics.tpl
+%%WWWDIR%%/Smarty/templates/CurrencyDetailView.tpl
+%%WWWDIR%%/Smarty/templates/CurrencyEditView.tpl
+%%WWWDIR%%/Smarty/templates/CurrencyListView.tpl
+%%WWWDIR%%/Smarty/templates/CurrencyListViewEntries.tpl
+%%WWWDIR%%/Smarty/templates/CustomFieldEntries.tpl
+%%WWWDIR%%/Smarty/templates/CustomFieldList.tpl
+%%WWWDIR%%/Smarty/templates/CustomFieldMapping.tpl
+%%WWWDIR%%/Smarty/templates/CustomView.tpl
+%%WWWDIR%%/Smarty/templates/DefModuleView.tpl
+%%WWWDIR%%/Smarty/templates/DeleteRole.tpl
+%%WWWDIR%%/Smarty/templates/DetailView.tpl
+%%WWWDIR%%/Smarty/templates/DetailViewEmailTemplate.tpl
+%%WWWDIR%%/Smarty/templates/DetailViewFields.tpl
+%%WWWDIR%%/Smarty/templates/DetailViewHidden.tpl
+%%WWWDIR%%/Smarty/templates/DetailViewUI.tpl
+%%WWWDIR%%/Smarty/templates/DisplayFields.tpl
+%%WWWDIR%%/Smarty/templates/EditProfile.tpl
+%%WWWDIR%%/Smarty/templates/EditViewHidden.tpl
+%%WWWDIR%%/Smarty/templates/EmailContents.tpl
+%%WWWDIR%%/Smarty/templates/EmailDetailView.tpl
+%%WWWDIR%%/Smarty/templates/EmailDetails.tpl
+%%WWWDIR%%/Smarty/templates/Emails.tpl
+%%WWWDIR%%/Smarty/templates/FieldAccess.tpl
+%%WWWDIR%%/Smarty/templates/FieldAccessindex.tpl
+%%WWWDIR%%/Smarty/templates/FieldOrderindex.tpl
+%%WWWDIR%%/Smarty/templates/GlobalListView.tpl
+%%WWWDIR%%/Smarty/templates/GroupDetailview.tpl
+%%WWWDIR%%/Smarty/templates/GroupEditView.tpl
+%%WWWDIR%%/Smarty/templates/Header.tpl
+%%WWWDIR%%/Smarty/templates/HomePage.tpl
+%%WWWDIR%%/Smarty/templates/ImportMap.tpl
+%%WWWDIR%%/Smarty/templates/ImportStep1.tpl
+%%WWWDIR%%/Smarty/templates/ImportStep2.tpl
+%%WWWDIR%%/Smarty/templates/Importerror.tpl
+%%WWWDIR%%/Smarty/templates/Inventory/InventoryActions.tpl
+%%WWWDIR%%/Smarty/templates/Inventory/InventoryCreateView.tpl
+%%WWWDIR%%/Smarty/templates/Inventory/InventoryDetailView.tpl
+%%WWWDIR%%/Smarty/templates/Inventory/InventoryEditView.tpl
+%%WWWDIR%%/Smarty/templates/Inventory/ProductDetails.tpl
+%%WWWDIR%%/Smarty/templates/Inventory/ProductDetailsEditView.tpl
+%%WWWDIR%%/Smarty/templates/JsArray.tpl
+%%WWWDIR%%/Smarty/templates/ListEmailTemplates.tpl
+%%WWWDIR%%/Smarty/templates/ListGroup.tpl
+%%WWWDIR%%/Smarty/templates/ListLeadCustomFieldMapping.tpl
+%%WWWDIR%%/Smarty/templates/ListLoginHistory.tpl
+%%WWWDIR%%/Smarty/templates/ListRoles.tpl
+%%WWWDIR%%/Smarty/templates/ListView.tpl
+%%WWWDIR%%/Smarty/templates/ListViewAjax.tpl
+%%WWWDIR%%/Smarty/templates/ListViewEntries.tpl
+%%WWWDIR%%/Smarty/templates/ListWordTemplates.tpl
+%%WWWDIR%%/Smarty/templates/Migration.tpl
+%%WWWDIR%%/Smarty/templates/MigrationStep1.tpl
+%%WWWDIR%%/Smarty/templates/MySites.tpl
+%%WWWDIR%%/Smarty/templates/MySitesContents.tpl
+%%WWWDIR%%/Smarty/templates/MySitesManage.tpl
+%%WWWDIR%%/Smarty/templates/OrgSharingDetailView.tpl
+%%WWWDIR%%/Smarty/templates/OrgSharingEditView.tpl
+%%WWWDIR%%/Smarty/templates/Organizationindex.tpl
+%%WWWDIR%%/Smarty/templates/PickListindex.tpl
+%%WWWDIR%%/Smarty/templates/Popup.tpl
+%%WWWDIR%%/Smarty/templates/PopupContents.tpl
+%%WWWDIR%%/Smarty/templates/PrintReport.tpl
+%%WWWDIR%%/Smarty/templates/ProfileDetailView.tpl
+%%WWWDIR%%/Smarty/templates/QuickCreate.tpl
+%%WWWDIR%%/Smarty/templates/QuickCreateHidden.tpl
+%%WWWDIR%%/Smarty/templates/RelatedListContents.tpl
+%%WWWDIR%%/Smarty/templates/RelatedListNew.tpl
+%%WWWDIR%%/Smarty/templates/RelatedLists.tpl
+%%WWWDIR%%/Smarty/templates/RelatedListsHidden.tpl
+%%WWWDIR%%/Smarty/templates/ReportColumns.tpl
+%%WWWDIR%%/Smarty/templates/ReportColumnsTotal.tpl
+%%WWWDIR%%/Smarty/templates/ReportContents.tpl
+%%WWWDIR%%/Smarty/templates/ReportFilters.tpl
+%%WWWDIR%%/Smarty/templates/ReportGrouping.tpl
+%%WWWDIR%%/Smarty/templates/ReportRun.tpl
+%%WWWDIR%%/Smarty/templates/ReportRunContents.tpl
+%%WWWDIR%%/Smarty/templates/Reports.tpl
+%%WWWDIR%%/Smarty/templates/ReportsCustomize.tpl
+%%WWWDIR%%/Smarty/templates/ReportsStep0.tpl
+%%WWWDIR%%/Smarty/templates/ReportsStep1.tpl
+%%WWWDIR%%/Smarty/templates/ReportsType.tpl
+%%WWWDIR%%/Smarty/templates/RoleDetailView.tpl
+%%WWWDIR%%/Smarty/templates/RoleEditView.tpl
+%%WWWDIR%%/Smarty/templates/RolePopup.tpl
+%%WWWDIR%%/Smarty/templates/RoleTree.tpl
+%%WWWDIR%%/Smarty/templates/Rss.tpl
+%%WWWDIR%%/Smarty/templates/RssFeeds.tpl
+%%WWWDIR%%/Smarty/templates/SelectEmail.tpl
+%%WWWDIR%%/Smarty/templates/SetMenu.tpl
+%%WWWDIR%%/Smarty/templates/Settings/Announcements.tpl
+%%WWWDIR%%/Smarty/templates/Settings/BackupServer.tpl
+%%WWWDIR%%/Smarty/templates/Settings/BackupServerContents.tpl
+%%WWWDIR%%/Smarty/templates/Settings/CompanyInfo.tpl
+%%WWWDIR%%/Smarty/templates/Settings/CustomInvoiceNo.tpl
+%%WWWDIR%%/Smarty/templates/Settings/EditCompanyInfo.tpl
+%%WWWDIR%%/Smarty/templates/Settings/EditEmailNotification.tpl
+%%WWWDIR%%/Smarty/templates/Settings/EditInventoryNotify.tpl
+%%WWWDIR%%/Smarty/templates/Settings/EditPickList.tpl
+%%WWWDIR%%/Smarty/templates/Settings/EmailConfig.tpl
+%%WWWDIR%%/Smarty/templates/Settings/EmailNotification.tpl
+%%WWWDIR%%/Smarty/templates/Settings/EmailNotificationContents.tpl
+%%WWWDIR%%/Smarty/templates/Settings/InventoryNotify.tpl
+%%WWWDIR%%/Smarty/templates/Settings/InventoryNotifyContents.tpl
+%%WWWDIR%%/Smarty/templates/Settings/InventoryTerms.tpl
+%%WWWDIR%%/Smarty/templates/Settings/ModuleOwners.tpl
+%%WWWDIR%%/Smarty/templates/Settings/ModuleOwnersContents.tpl
+%%WWWDIR%%/Smarty/templates/Settings/PickList.tpl
+%%WWWDIR%%/Smarty/templates/Settings/PickListContents.tpl
+%%WWWDIR%%/Smarty/templates/Settings/ProxyServer.tpl
+%%WWWDIR%%/Smarty/templates/Settings/TaxConfig.tpl
+%%WWWDIR%%/Smarty/templates/Settings.tpl
+%%WWWDIR%%/Smarty/templates/ShowAuditTrail.tpl
+%%WWWDIR%%/Smarty/templates/ShowAuditTrailContents.tpl
+%%WWWDIR%%/Smarty/templates/ShowHistoryContents.tpl
+%%WWWDIR%%/Smarty/templates/SysInformation.tpl
+%%WWWDIR%%/Smarty/templates/TagCloudDisplay.tpl
+%%WWWDIR%%/Smarty/templates/UserDetailView.tpl
+%%WWWDIR%%/Smarty/templates/UserEditView.tpl
+%%WWWDIR%%/Smarty/templates/UserGroups.tpl
+%%WWWDIR%%/Smarty/templates/UserListView.tpl
+%%WWWDIR%%/Smarty/templates/UserListViewContents.tpl
+%%WWWDIR%%/Smarty/templates/UserProfileList.tpl
+%%WWWDIR%%/Smarty/templates/Webmails.tpl
+%%WWWDIR%%/Smarty/templates/loginheader.tpl
+%%WWWDIR%%/Smarty/templates/pendingActivities.tpl
+%%WWWDIR%%/Smarty/templates/salesEditView.tpl
+%%WWWDIR%%/Smarty/templates/upcomingActivities.tpl
+%%WWWDIR%%/Smarty/templates_c/vtigercrm.txt
+%%WWWDIR%%/adodb/adodb-active-record.inc.php
+%%WWWDIR%%/adodb/adodb-csvlib.inc.php
+%%WWWDIR%%/adodb/adodb-datadict.inc.php
+%%WWWDIR%%/adodb/adodb-error.inc.php
+%%WWWDIR%%/adodb/adodb-errorhandler.inc.php
+%%WWWDIR%%/adodb/adodb-errorpear.inc.php
+%%WWWDIR%%/adodb/adodb-exceptions.inc.php
+%%WWWDIR%%/adodb/adodb-iterator.inc.php
+%%WWWDIR%%/adodb/adodb-lib.inc.php
+%%WWWDIR%%/adodb/adodb-pager.inc.php
+%%WWWDIR%%/adodb/adodb-pear.inc.php
+%%WWWDIR%%/adodb/adodb-perf.inc.php
+%%WWWDIR%%/adodb/adodb-php4.inc.php
+%%WWWDIR%%/adodb/adodb-time.inc.php
+%%WWWDIR%%/adodb/adodb-xmlschema.inc.php
+%%WWWDIR%%/adodb/adodb-xmlschema03.inc.php
+%%WWWDIR%%/adodb/adodb.inc.php
+%%WWWDIR%%/adodb/contrib/toxmlrpc.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-access.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-db2.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-firebird.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-generic.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-ibase.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-informix.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-mssql.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-mysql.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-oci8.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-postgres.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-sapdb.inc.php
+%%WWWDIR%%/adodb/datadict/datadict-sybase.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-access.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-ado.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-ado5.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-ado_access.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-ado_mssql.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-borland_ibase.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-csv.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-db2.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-fbsql.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-firebird.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-ibase.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-informix.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-informix72.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-ldap.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-mssql.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-mssqlpo.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-mysql.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-mysqli.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-mysqlt.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-netezza.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-oci8.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-oci805.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-oci8po.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-odbc.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-odbc_db2.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-odbc_mssql.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-odbc_oracle.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-odbtp.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-odbtp_unicode.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-oracle.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-pdo.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-pdo_mssql.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-pdo_mysql.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-pdo_oci.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-pdo_pgsql.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-postgres.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-postgres64.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-postgres7.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-postgres8.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-proxy.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-sapdb.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-sqlanywhere.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-sqlite.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-sqlitepo.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-sybase.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-sybase_ase.inc.php
+%%WWWDIR%%/adodb/drivers/adodb-vfp.inc.php
+%%WWWDIR%%/adodb/lang/adodb-ar.inc.php
+%%WWWDIR%%/adodb/lang/adodb-bg.inc.php
+%%WWWDIR%%/adodb/lang/adodb-bgutf8.inc.php
+%%WWWDIR%%/adodb/lang/adodb-ca.inc.php
+%%WWWDIR%%/adodb/lang/adodb-cn.inc.php
+%%WWWDIR%%/adodb/lang/adodb-cz.inc.php
+%%WWWDIR%%/adodb/lang/adodb-da.inc.php
+%%WWWDIR%%/adodb/lang/adodb-de.inc.php
+%%WWWDIR%%/adodb/lang/adodb-en.inc.php
+%%WWWDIR%%/adodb/lang/adodb-es.inc.php
+%%WWWDIR%%/adodb/lang/adodb-esperanto.inc.php
+%%WWWDIR%%/adodb/lang/adodb-fr.inc.php
+%%WWWDIR%%/adodb/lang/adodb-hu.inc.php
+%%WWWDIR%%/adodb/lang/adodb-it.inc.php
+%%WWWDIR%%/adodb/lang/adodb-nl.inc.php
+%%WWWDIR%%/adodb/lang/adodb-pl.inc.php
+%%WWWDIR%%/adodb/lang/adodb-pt-br.inc.php
+%%WWWDIR%%/adodb/lang/adodb-ro.inc.php
+%%WWWDIR%%/adodb/lang/adodb-ru1251.inc.php
+%%WWWDIR%%/adodb/lang/adodb-sv.inc.php
+%%WWWDIR%%/adodb/lang/adodb-uk1251.inc.php
+%%WWWDIR%%/adodb/pear/Auth/Container/ADOdb.php
+%%WWWDIR%%/adodb/perf/perf-db2.inc.php
+%%WWWDIR%%/adodb/perf/perf-informix.inc.php
+%%WWWDIR%%/adodb/perf/perf-mssql.inc.php
+%%WWWDIR%%/adodb/perf/perf-mysql.inc.php
+%%WWWDIR%%/adodb/perf/perf-oci8.inc.php
+%%WWWDIR%%/adodb/perf/perf-postgres.inc.php
+%%WWWDIR%%/adodb/pivottable.inc.php
+%%WWWDIR%%/adodb/rsfilter.inc.php
+%%WWWDIR%%/adodb/server.php
+%%WWWDIR%%/adodb/session/adodb-compress-bzip2.php
+%%WWWDIR%%/adodb/session/adodb-compress-gzip.php
+%%WWWDIR%%/adodb/session/adodb-cryptsession.php
+%%WWWDIR%%/adodb/session/adodb-encrypt-mcrypt.php
+%%WWWDIR%%/adodb/session/adodb-encrypt-md5.php
+%%WWWDIR%%/adodb/session/adodb-encrypt-secret.php
+%%WWWDIR%%/adodb/session/adodb-encrypt-sha1.php
+%%WWWDIR%%/adodb/session/adodb-session-clob.php
+%%WWWDIR%%/adodb/session/adodb-session.php
+%%WWWDIR%%/adodb/session/crypt.inc.php
+%%WWWDIR%%/adodb/session/old/adodb-cryptsession.php
+%%WWWDIR%%/adodb/session/old/adodb-session-clob.php
+%%WWWDIR%%/adodb/session/old/adodb-session.php
+%%WWWDIR%%/adodb/session/old/crypt.inc.php
+%%WWWDIR%%/adodb/tests/benchmark.php
+%%WWWDIR%%/adodb/tests/client.php
+%%WWWDIR%%/adodb/tests/pdo.php
+%%WWWDIR%%/adodb/tests/test-active-record.php
+%%WWWDIR%%/adodb/tests/test-active-recs2.php
+%%WWWDIR%%/adodb/tests/test-datadict.php
+%%WWWDIR%%/adodb/tests/test-perf.php
+%%WWWDIR%%/adodb/tests/test-pgblob.php
+%%WWWDIR%%/adodb/tests/test-php5.php
+%%WWWDIR%%/adodb/tests/test-xmlschema.php
+%%WWWDIR%%/adodb/tests/test.php
+%%WWWDIR%%/adodb/tests/test2.php
+%%WWWDIR%%/adodb/tests/test3.php
+%%WWWDIR%%/adodb/tests/test4.php
+%%WWWDIR%%/adodb/tests/test5.php
+%%WWWDIR%%/adodb/tests/test_rs_array.php
+%%WWWDIR%%/adodb/tests/testcache.php
+%%WWWDIR%%/adodb/tests/testdatabases.inc.php
+%%WWWDIR%%/adodb/tests/testgenid.php
+%%WWWDIR%%/adodb/tests/testmssql.php
+%%WWWDIR%%/adodb/tests/testoci8.php
+%%WWWDIR%%/adodb/tests/testoci8cursor.php
+%%WWWDIR%%/adodb/tests/testpaging.php
+%%WWWDIR%%/adodb/tests/testpear.php
+%%WWWDIR%%/adodb/tests/testsessions.php
+%%WWWDIR%%/adodb/tests/time.php
+%%WWWDIR%%/adodb/tests/tmssql.php
+%%WWWDIR%%/adodb/toexport.inc.php
+%%WWWDIR%%/adodb/tohtml.inc.php
+%%WWWDIR%%/adodb/xsl/convert-0.1-0.2.xsl
+%%WWWDIR%%/adodb/xsl/convert-0.1-0.3.xsl
+%%WWWDIR%%/adodb/xsl/convert-0.2-0.1.xsl
+%%WWWDIR%%/adodb/xsl/convert-0.2-0.3.xsl
+%%WWWDIR%%/adodb/xsl/remove-0.2.xsl
+%%WWWDIR%%/adodb/xsl/remove-0.3.xsl
+%%WWWDIR%%/cache/images/index.html
+%%WWWDIR%%/cache/import/index.html
+%%WWWDIR%%/cache/index.html
+%%WWWDIR%%/cache/upload/index.html
+%%WWWDIR%%/class_http/class_http.php
+%%WWWDIR%%/class_http/image_cache.php
+%%WWWDIR%%/cron/class.phpmailer.php
+%%WWWDIR%%/cron/class.smtp.php
+%%WWWDIR%%/cron/executecron.sh
+%%WWWDIR%%/cron/intimateTaskStatus.bat
+%%WWWDIR%%/cron/intimateTaskStatus.php
+%%WWWDIR%%/cron/jobstartwindows.bat
+%%WWWDIR%%/cron/output.txt
+%%WWWDIR%%/cron/schtasks.exe
+%%WWWDIR%%/cron/send_mail.php
+%%WWWDIR%%/cron/sendreminder.sh
+%%WWWDIR%%/data/CRMEntity.php
+%%WWWDIR%%/data/SugarBean.php
+%%WWWDIR%%/data/Tracker.php
+%%WWWDIR%%/database/DatabaseConnection.php
+%%WWWDIR%%/include/Ajax/CommonAjax.php
+%%WWWDIR%%/include/Ajax/TagCloud.php
+%%WWWDIR%%/include/ComboStrings.php
+%%WWWDIR%%/include/ComboUtil.php
+%%WWWDIR%%/include/CustomFieldUtil.php
+%%WWWDIR%%/include/DatabaseUtil.php
+%%WWWDIR%%/include/FormValidationUtil.php
+%%WWWDIR%%/include/ListView/ListView.php
+%%WWWDIR%%/include/ListView/ListViewSession.php
+%%WWWDIR%%/include/Menu.php
+%%WWWDIR%%/include/PopulateComboValues.php
+%%WWWDIR%%/include/RelatedListView.php
+%%WWWDIR%%/include/calculator/Calc.php
+%%WWWDIR%%/include/calculator/calc.js
+%%WWWDIR%%/include/database/PearDatabase.php
+%%WWWDIR%%/include/database/Postgres8.php
+%%WWWDIR%%/include/db_backup/backup.php
+%%WWWDIR%%/include/db_backup/ftp.php
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckcontextmenugroup.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckcontextmenuitem.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckcontextmenuseparator.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckevents.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckpanel_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckpanel_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckplugin.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckspecialcombo.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckstyledef.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckstyledef_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckstyledef_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckstylesloader.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbar.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarbreak_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarbreak_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarbutton.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarcombo.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarfontformatcombo.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarfontscombo.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarfontsizecombo.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarpanelbutton.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarspecialcombo.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fcktoolbarstylecombo.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckxml_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/classes/fckxml_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/commandclasses/fck_othercommands.js
+%%WWWDIR%%/include/fckeditor/editor/_source/commandclasses/fcknamedcommand.js
+%%WWWDIR%%/include/fckeditor/editor/_source/commandclasses/fckpasteplaintextcommand.js
+%%WWWDIR%%/include/fckeditor/editor/_source/commandclasses/fckpastewordcommand.js
+%%WWWDIR%%/include/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/commandclasses/fckspellcheckcommand_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/commandclasses/fckstylecommand.js
+%%WWWDIR%%/include/fckeditor/editor/_source/commandclasses/fcktablecommand.js
+%%WWWDIR%%/include/fckeditor/editor/_source/commandclasses/fcktextcolorcommand.js
+%%WWWDIR%%/include/fckeditor/editor/_source/globals/fck_constants.js
+%%WWWDIR%%/include/fckeditor/editor/_source/globals/fckeditorapi.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fck.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fck_1.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fck_1_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fck_1_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fck_2.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fck_2_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fck_2_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fck_last.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fck_onload.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckbrowserinfo.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckcodeformatter.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckcommands.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckconfig.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckcontextmenu.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckcontextmenu_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckcontextmenu_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckcoreextensions.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckdebug.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckdialog.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckdialog_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckdialog_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcklanguagemanager.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcknamespace.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckplugins.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckregexlib.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckscriptloader.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckselection.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckselection_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckselection_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcktablehandler.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcktablehandler_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcktablehandler_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcktoolbaritems.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcktoolbarset.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcktools.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcktools_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fcktools_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckundo_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckundo_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckurlparams.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckxhtml.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckxhtml_gecko.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckxhtml_ie.js
+%%WWWDIR%%/include/fckeditor/editor/_source/internals/fckxhtmlentities.js
+%%WWWDIR%%/include/fckeditor/editor/css/behaviors/anchor.gif
+%%WWWDIR%%/include/fckeditor/editor/css/behaviors/anchors.htc
+%%WWWDIR%%/include/fckeditor/editor/css/behaviors/disablehandles.htc
+%%WWWDIR%%/include/fckeditor/editor/css/behaviors/hiddenfield.gif
+%%WWWDIR%%/include/fckeditor/editor/css/behaviors/hiddenfield.htc
+%%WWWDIR%%/include/fckeditor/editor/css/behaviors/moz-bindings.xml
+%%WWWDIR%%/include/fckeditor/editor/css/behaviors/showtableborders.htc
+%%WWWDIR%%/include/fckeditor/editor/css/fck_editorarea.css
+%%WWWDIR%%/include/fckeditor/editor/css/fck_internal.css
+%%WWWDIR%%/include/fckeditor/editor/css/fck_showtableborders_gecko.css
+%%WWWDIR%%/include/fckeditor/editor/dialog/common/fck_dialog_common.css
+%%WWWDIR%%/include/fckeditor/editor/dialog/common/fck_dialog_common.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/common/fcknumericfield.htc
+%%WWWDIR%%/include/fckeditor/editor/dialog/common/images/locked.gif
+%%WWWDIR%%/include/fckeditor/editor/dialog/common/images/reset.gif
+%%WWWDIR%%/include/fckeditor/editor/dialog/common/images/unlocked.gif
+%%WWWDIR%%/include/fckeditor/editor/dialog/common/moz-bindings.xml
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_about/lgpl.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_about/logo_fckeditor.gif
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_about/logo_fredck.gif
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_about.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_anchor.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_button.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_checkbox.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_colorselector.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_docprops/fck_document_preview.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_docprops.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_find.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_flash.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_form.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_hiddenfield.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_image/fck_image.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_image/fck_image_preview.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_image.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_link/fck_link.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_link.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_listprop.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_paste.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_radiobutton.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_replace.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_select/fck_select.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_select.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_smiley.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_source.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_specialchar.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/blank.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controlWindow.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/controls.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.cfm
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.php
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts/spellchecker.pl
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellChecker.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellchecker.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/spellerStyle.css
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/wordWindow.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_table.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_tablecell.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_template.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_textarea.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_textfield.html
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_universalkey/00.gif
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_universalkey/data.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_universalkey/diacritic.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_universalkey/dialogue.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_universalkey/fck_universalkey.css
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_universalkey/keyboard_layout.gif
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_universalkey/multihexa.js
+%%WWWDIR%%/include/fckeditor/editor/dialog/fck_universalkey.html
+%%WWWDIR%%/include/fckeditor/editor/fckblank.html
+%%WWWDIR%%/include/fckeditor/editor/fckdebug.html
+%%WWWDIR%%/include/fckeditor/editor/fckdialog.html
+%%WWWDIR%%/include/fckeditor/editor/fckdocument.html
+%%WWWDIR%%/include/fckeditor/editor/fckeditor.html
+%%WWWDIR%%/include/fckeditor/editor/fckeditor.original.html
+%%WWWDIR%%/include/fckeditor/editor/fckeditorarea.html
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/browser.css
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/browser.html
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/asp/basexml.asp
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/asp/class_upload.asp
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/asp/commands.asp
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/asp/config.asp
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/asp/connector.asp
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/asp/io.asp
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/asp/util.asp
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/aspx/connector.aspx
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/cfm/config.cfm
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/cfm/connector.cfm
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/perl/basexml.pl
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/perl/commands.pl
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/perl/connector.cgi
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/perl/io.pl
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/perl/upload_fck.pl
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/perl/util.pl
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/php/basexml.php
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/php/commands.php
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/php/config.php
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/php/io.php
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/php/util.php
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/test.html
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/frmactualfolder.html
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/frmcreatefolder.html
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/frmfolders.html
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/frmresourceslist.html
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/frmresourcetype.html
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/frmupload.html
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/ButtonArrow.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/Folder.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/Folder32.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/FolderOpened.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/FolderOpened32.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/FolderUp.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/ai.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/avi.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/bmp.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/cs.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/default.icon.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/dll.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/doc.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/exe.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/fla.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/gif.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/htm.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/html.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/jpg.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/js.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/mdb.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/mp3.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/pdf.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/ppt.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/rdp.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/swf.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/swt.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/txt.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/vsd.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/xls.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/xml.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32/zip.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/ai.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/avi.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/bmp.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/cs.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/default.icon.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/dll.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/doc.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/exe.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/fla.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/gif.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/htm.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/html.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/jpg.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/js.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/mdb.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/mp3.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/pdf.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/ppt.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/rdp.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/swf.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/swt.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/txt.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/vsd.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/xls.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/xml.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/zip.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/spacer.gif
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/js/common.js
+%%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/js/fckxml.js
+%%WWWDIR%%/include/fckeditor/editor/images/anchor.gif
+%%WWWDIR%%/include/fckeditor/editor/images/spacer.gif
+%%WWWDIR%%/include/fckeditor/editor/js/fck_startup.js
+%%WWWDIR%%/include/fckeditor/editor/js/fckeditorcode_gecko_1.js
+%%WWWDIR%%/include/fckeditor/editor/js/fckeditorcode_gecko_2.js
+%%WWWDIR%%/include/fckeditor/editor/js/fckeditorcode_ie_1.js
+%%WWWDIR%%/include/fckeditor/editor/js/fckeditorcode_ie_2.js
+%%WWWDIR%%/include/fckeditor/editor/lang/_getfontformat.html
+%%WWWDIR%%/include/fckeditor/editor/lang/_translationstatus.txt
+%%WWWDIR%%/include/fckeditor/editor/lang/ar.js
+%%WWWDIR%%/include/fckeditor/editor/lang/bg.js
+%%WWWDIR%%/include/fckeditor/editor/lang/bs.js
+%%WWWDIR%%/include/fckeditor/editor/lang/ca.js
+%%WWWDIR%%/include/fckeditor/editor/lang/cs.js
+%%WWWDIR%%/include/fckeditor/editor/lang/da.js
+%%WWWDIR%%/include/fckeditor/editor/lang/de.js
+%%WWWDIR%%/include/fckeditor/editor/lang/el.js
+%%WWWDIR%%/include/fckeditor/editor/lang/en-au.js
+%%WWWDIR%%/include/fckeditor/editor/lang/en-uk.js
+%%WWWDIR%%/include/fckeditor/editor/lang/en.js
+%%WWWDIR%%/include/fckeditor/editor/lang/eo.js
+%%WWWDIR%%/include/fckeditor/editor/lang/es.js
+%%WWWDIR%%/include/fckeditor/editor/lang/et.js
+%%WWWDIR%%/include/fckeditor/editor/lang/eu.js
+%%WWWDIR%%/include/fckeditor/editor/lang/fa.js
+%%WWWDIR%%/include/fckeditor/editor/lang/fcklanguagemanager.js
+%%WWWDIR%%/include/fckeditor/editor/lang/fi.js
+%%WWWDIR%%/include/fckeditor/editor/lang/fo.js
+%%WWWDIR%%/include/fckeditor/editor/lang/fr.js
+%%WWWDIR%%/include/fckeditor/editor/lang/gl.js
+%%WWWDIR%%/include/fckeditor/editor/lang/gr.js
+%%WWWDIR%%/include/fckeditor/editor/lang/he.js
+%%WWWDIR%%/include/fckeditor/editor/lang/hi.js
+%%WWWDIR%%/include/fckeditor/editor/lang/hr.js
+%%WWWDIR%%/include/fckeditor/editor/lang/hu.js
+%%WWWDIR%%/include/fckeditor/editor/lang/it.js
+%%WWWDIR%%/include/fckeditor/editor/lang/ja.js
+%%WWWDIR%%/include/fckeditor/editor/lang/ko.js
+%%WWWDIR%%/include/fckeditor/editor/lang/lt.js
+%%WWWDIR%%/include/fckeditor/editor/lang/lv.js
+%%WWWDIR%%/include/fckeditor/editor/lang/mn.js
+%%WWWDIR%%/include/fckeditor/editor/lang/ms.js
+%%WWWDIR%%/include/fckeditor/editor/lang/nl.js
+%%WWWDIR%%/include/fckeditor/editor/lang/no.js
+%%WWWDIR%%/include/fckeditor/editor/lang/pl.js
+%%WWWDIR%%/include/fckeditor/editor/lang/pt-br.js
+%%WWWDIR%%/include/fckeditor/editor/lang/pt.js
+%%WWWDIR%%/include/fckeditor/editor/lang/ro.js
+%%WWWDIR%%/include/fckeditor/editor/lang/ru.js
+%%WWWDIR%%/include/fckeditor/editor/lang/sk.js
+%%WWWDIR%%/include/fckeditor/editor/lang/sl.js
+%%WWWDIR%%/include/fckeditor/editor/lang/sr-latn.js
+%%WWWDIR%%/include/fckeditor/editor/lang/sr.js
+%%WWWDIR%%/include/fckeditor/editor/lang/sv.js
+%%WWWDIR%%/include/fckeditor/editor/lang/th.js
+%%WWWDIR%%/include/fckeditor/editor/lang/tr.js
+%%WWWDIR%%/include/fckeditor/editor/lang/uk.js
+%%WWWDIR%%/include/fckeditor/editor/lang/vi.js
+%%WWWDIR%%/include/fckeditor/editor/lang/zh-cn.js
+%%WWWDIR%%/include/fckeditor/editor/lang/zh.js
+%%WWWDIR%%/include/fckeditor/editor/plugins/placeholder/fck_placeholder.html
+%%WWWDIR%%/include/fckeditor/editor/plugins/placeholder/fckplugin.js
+%%WWWDIR%%/include/fckeditor/editor/plugins/placeholder/lang/de.js
+%%WWWDIR%%/include/fckeditor/editor/plugins/placeholder/lang/en.js
+%%WWWDIR%%/include/fckeditor/editor/plugins/placeholder/lang/fr.js
+%%WWWDIR%%/include/fckeditor/editor/plugins/placeholder/lang/it.js
+%%WWWDIR%%/include/fckeditor/editor/plugins/placeholder/lang/pl.js
+%%WWWDIR%%/include/fckeditor/editor/plugins/placeholder/placeholder.gif
+%%WWWDIR%%/include/fckeditor/editor/plugins/tablecommands/fckplugin.js
+%%WWWDIR%%/include/fckeditor/editor/skins/default/fck_contextmenu.css
+%%WWWDIR%%/include/fckeditor/editor/skins/default/fck_dialog.css
+%%WWWDIR%%/include/fckeditor/editor/skins/default/fck_editor.css
+%%WWWDIR%%/include/fckeditor/editor/skins/default/images/toolbar.arrowright.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/images/toolbar.buttonarrow.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/images/toolbar.collapse.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/images/toolbar.end.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/images/toolbar.expand.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/images/toolbar.separator.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/images/toolbar.start.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/about.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/anchor.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/bgcolor.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/bold.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/bulletedlist.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/button.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/checkbox.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/copy.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/cut.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/docprops.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/find.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/flash.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/form.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/hiddenfield.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/image.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/imagebutton.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/indent.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/inserthorizontalrule.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/insertorderedlist.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/insertunorderedlist.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/italic.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/justifycenter.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/justifyfull.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/justifyleft.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/justifyright.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/link.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/newpage.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/numberedlist.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/outdent.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/pagebreak.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/paste.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/pastetext.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/pasteword.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/preview.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/print.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/radio.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/redo.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/removeformat.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/replace.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/save.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/select.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/selectall.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/showdetails.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/showtableborders.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/smiley.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/source.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/specialchar.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/spellcheck.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/strikethrough.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/subscript.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/superscript.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/table.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/tablecell.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/tabledeletecells.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/tabledeletecolumns.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/tabledeleterows.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/tableinsertcell.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/tableinsertcolumn.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/tableinsertrow.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/tablemergecells.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/tablesplitcell.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/templates.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/textarea.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/textcolor.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/textfield.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/underline.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/undo.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/universalkey.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/unlink.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar/unorderedlist.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/fck_contextmenu.css
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/fck_dialog.css
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/fck_editor.css
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/images/toolbar.arrowright.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/images/toolbar.buttonarrow.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/images/toolbar.buttonbg.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/images/toolbar.collapse.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/images/toolbar.end.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/images/toolbar.expand.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/images/toolbar.separator.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/images/toolbar.start.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/about.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/anchor.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/bgcolor.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/bold.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/bulletedlist.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/button.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/checkbox.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/copy.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/cut.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/docprops.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/find.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/flash.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/form.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/hiddenfield.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/image.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/imagebutton.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/indent.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/inserthorizontalrule.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/insertorderedlist.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/insertunorderedlist.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/italic.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/justifycenter.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/justifyfull.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/justifyleft.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/justifyright.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/link.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/newpage.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/numberedlist.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/outdent.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/pagebreak.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/paste.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/pastetext.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/pasteword.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/preview.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/print.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/radio.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/redo.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/removeformat.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/replace.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/save.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/select.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/selectall.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/showdetails.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/showtableborders.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/smiley.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/source.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/specialchar.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/spellcheck.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/strikethrough.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/subscript.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/superscript.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/table.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/tablecell.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/tabledeletecells.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/tabledeletecolumns.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/tabledeleterows.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/tableinsertcell.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/tableinsertcolumn.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/tableinsertrow.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/tablemergecells.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/tablesplitcell.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/templates.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/textarea.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/textcolor.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/textfield.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/underline.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/undo.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/universalkey.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/unlink.gif
+%%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar/unorderedlist.gif
+%%WWWDIR%%/include/fckeditor/fckconfig.js
+%%WWWDIR%%/include/fckeditor/fckeditor.js
+%%WWWDIR%%/include/fckeditor/fckeditor.php
+%%WWWDIR%%/include/fckeditor/fckstyles.xml
+%%WWWDIR%%/include/fckeditor/fcktemplates.xml
+%%WWWDIR%%/include/fckeditor/license.txt
+%%WWWDIR%%/include/fpdf/font/courier.php
+%%WWWDIR%%/include/fpdf/font/helvetica.php
+%%WWWDIR%%/include/fpdf/font/helveticab.php
+%%WWWDIR%%/include/fpdf/font/helveticabi.php
+%%WWWDIR%%/include/fpdf/font/helveticai.php
+%%WWWDIR%%/include/fpdf/font/symbol.php
+%%WWWDIR%%/include/fpdf/font/times.php
+%%WWWDIR%%/include/fpdf/font/timesb.php
+%%WWWDIR%%/include/fpdf/font/timesbi.php
+%%WWWDIR%%/include/fpdf/font/timesi.php
+%%WWWDIR%%/include/fpdf/font/zapfdingbats.php
+%%WWWDIR%%/include/fpdf/fpdf.css
+%%WWWDIR%%/include/fpdf/fpdf.php
+%%WWWDIR%%/include/fpdf/pdf.php
+%%WWWDIR%%/include/fpdf/pdfconfig.php
+%%WWWDIR%%/include/fpdf/templates/body.php
+%%WWWDIR%%/include/freetag/freetag.class.php
+%%WWWDIR%%/include/freetag/license.txt
+%%WWWDIR%%/include/images/announ.gif
+%%WWWDIR%%/include/images/bgcolor.gif
+%%WWWDIR%%/include/images/blank.gif
+%%WWWDIR%%/include/images/loginAlpha.gif
+%%WWWDIR%%/include/images/loginBg.gif
+%%WWWDIR%%/include/images/loginBottomBg.gif
+%%WWWDIR%%/include/images/loginBottomURL.gif
+%%WWWDIR%%/include/images/loginBtnSignin.gif
+%%WWWDIR%%/include/images/loginSIBottomLeft.gif
+%%WWWDIR%%/include/images/loginSIBottomRight.gif
+%%WWWDIR%%/include/images/loginSITopLeft.gif
+%%WWWDIR%%/include/images/loginSITopRight.gif
+%%WWWDIR%%/include/images/loginTopBg.gif
+%%WWWDIR%%/include/images/loginTopShade.gif
+%%WWWDIR%%/include/images/loginVtigerCRM.gif
+%%WWWDIR%%/include/images/noimage.gif
+%%WWWDIR%%/include/images/right_arc.gif
+%%WWWDIR%%/include/images/spacer.gif
+%%WWWDIR%%/include/images/topBg.gif
+%%WWWDIR%%/include/images/vtigercrm_icon.ico
+%%WWWDIR%%/include/install/images/Thumbs.db
+%%WWWDIR%%/include/install/images/bottomGradient.gif
+%%WWWDIR%%/include/install/images/bottomShadow.jpg
+%%WWWDIR%%/include/install/images/confWizConfFile.gif
+%%WWWDIR%%/include/install/images/confWizConfirmSettings.gif
+%%WWWDIR%%/include/install/images/confWizDbGeneration.gif
+%%WWWDIR%%/include/install/images/confWizFinish.gif
+%%WWWDIR%%/include/install/images/confWizInstallCheck.gif
+%%WWWDIR%%/include/install/images/confWizSysConfig.gif
+%%WWWDIR%%/include/install/images/configwizard.gif
+%%WWWDIR%%/include/install/images/cwBtnBack.gif
+%%WWWDIR%%/include/install/images/cwBtnChange.gif
+%%WWWDIR%%/include/install/images/cwBtnFinish.gif
+%%WWWDIR%%/include/install/images/cwBtnNext.gif
+%%WWWDIR%%/include/install/images/loading.gif
+%%WWWDIR%%/include/install/images/pageBackground.gif
+%%WWWDIR%%/include/install/images/qcBg.gif
+%%WWWDIR%%/include/install/images/settingsMTBg.gif
+%%WWWDIR%%/include/install/images/settingsSelUIBg.gif
+%%WWWDIR%%/include/install/images/start.jpg
+%%WWWDIR%%/include/install/images/tabSelectedBg.gif
+%%WWWDIR%%/include/install/images/tabSeperatorBg.gif
+%%WWWDIR%%/include/install/images/tabUnSelectedBg.gif
+%%WWWDIR%%/include/install/images/topHeadBg.gif
+%%WWWDIR%%/include/install/images/topInnerShadow.gif
+%%WWWDIR%%/include/install/images/trans.gif
+%%WWWDIR%%/include/install/images/vtigercrm5.gif
+%%WWWDIR%%/include/install/images/welcome.gif
+%%WWWDIR%%/include/install/install.css
+%%WWWDIR%%/include/js/ColorPicker2.js
+%%WWWDIR%%/include/js/Inventory.js
+%%WWWDIR%%/include/js/ListView.js
+%%WWWDIR%%/include/js/Mail.js
+%%WWWDIR%%/include/js/Merge.js
+%%WWWDIR%%/include/js/QuickCreate.js
+%%WWWDIR%%/include/js/ajax.js
+%%WWWDIR%%/include/js/clock.js
+%%WWWDIR%%/include/js/customview.js
+%%WWWDIR%%/include/js/dtlviewajax.js
+%%WWWDIR%%/include/js/en_us.lang.js
+%%WWWDIR%%/include/js/general.js
+%%WWWDIR%%/include/js/menu.js
+%%WWWDIR%%/include/js/popup.js
+%%WWWDIR%%/include/js/reflection.js
+%%WWWDIR%%/include/js/search.js
+%%WWWDIR%%/include/js/slider.js
+%%WWWDIR%%/include/js/smoothscroll.js
+%%WWWDIR%%/include/js/submenu.js
+%%WWWDIR%%/include/js/thumbnail.js
+%%WWWDIR%%/include/language/en_us.lang.php
+%%WWWDIR%%/include/logging.php
+%%WWWDIR%%/include/magpierss/extlib/Snoopy.class.inc
+%%WWWDIR%%/include/magpierss/rss_cache.inc
+%%WWWDIR%%/include/magpierss/rss_fetch.inc
+%%WWWDIR%%/include/magpierss/rss_parse.inc
+%%WWWDIR%%/include/magpierss/rss_utils.inc
+%%WWWDIR%%/include/nusoap/changelog
+%%WWWDIR%%/include/nusoap/class.nusoap_base.php
+%%WWWDIR%%/include/nusoap/class.soap_fault.php
+%%WWWDIR%%/include/nusoap/class.soap_parser.php
+%%WWWDIR%%/include/nusoap/class.soap_server.php
+%%WWWDIR%%/include/nusoap/class.soap_transport_http.php
+%%WWWDIR%%/include/nusoap/class.soap_val.php
+%%WWWDIR%%/include/nusoap/class.soapclient.php
+%%WWWDIR%%/include/nusoap/class.wsdl.php
+%%WWWDIR%%/include/nusoap/class.wsdlcache.php
+%%WWWDIR%%/include/nusoap/class.xmlschema.php
+%%WWWDIR%%/include/nusoap/nusoap.php
+%%WWWDIR%%/include/nusoap/nusoapmime.php
+%%WWWDIR%%/include/php_writeexcel/LICENSE
+%%WWWDIR%%/include/php_writeexcel/class.excel.php
+%%WWWDIR%%/include/php_writeexcel/class.writeexcel_biffwriter.inc.php
+%%WWWDIR%%/include/php_writeexcel/class.writeexcel_format.inc.php
+%%WWWDIR%%/include/php_writeexcel/class.writeexcel_formula.inc.php
+%%WWWDIR%%/include/php_writeexcel/class.writeexcel_olewriter.inc.php
+%%WWWDIR%%/include/php_writeexcel/class.writeexcel_workbook.inc.php
+%%WWWDIR%%/include/php_writeexcel/class.writeexcel_workbookbig.inc.php
+%%WWWDIR%%/include/php_writeexcel/class.writeexcel_worksheet.inc.php
+%%WWWDIR%%/include/php_writeexcel/functions.writeexcel_utility.inc.php
+%%WWWDIR%%/include/prototype-1.4.0/CHANGELOG
+%%WWWDIR%%/include/prototype-1.4.0/LICENSE
+%%WWWDIR%%/include/prototype-1.4.0/README
+%%WWWDIR%%/include/prototype-1.4.0/Rakefile
+%%WWWDIR%%/include/prototype-1.4.0/dist/prototype.js
+%%WWWDIR%%/include/prototype-1.4.0/lib/protodoc.rb
+%%WWWDIR%%/include/prototype-1.4.0/src/HEADER
+%%WWWDIR%%/include/prototype-1.4.0/src/ajax.js
+%%WWWDIR%%/include/prototype-1.4.0/src/array.js
+%%WWWDIR%%/include/prototype-1.4.0/src/base.js
+%%WWWDIR%%/include/prototype-1.4.0/src/dom.js
+%%WWWDIR%%/include/prototype-1.4.0/src/enumerable.js
+%%WWWDIR%%/include/prototype-1.4.0/src/event.js
+%%WWWDIR%%/include/prototype-1.4.0/src/form.js
+%%WWWDIR%%/include/prototype-1.4.0/src/hash.js
+%%WWWDIR%%/include/prototype-1.4.0/src/position.js
+%%WWWDIR%%/include/prototype-1.4.0/src/prototype.js
+%%WWWDIR%%/include/prototype-1.4.0/src/range.js
+%%WWWDIR%%/include/prototype-1.4.0/src/string.js
+%%WWWDIR%%/include/prototype-1.4.0/test/console.html
+%%WWWDIR%%/include/prototype-1.4.0/test/test.css
+%%WWWDIR%%/include/quickcreate.php
+%%WWWDIR%%/include/scriptaculous/builder.js
+%%WWWDIR%%/include/scriptaculous/controls.js
+%%WWWDIR%%/include/scriptaculous/dom-drag.js
+%%WWWDIR%%/include/scriptaculous/dragdrop.js
+%%WWWDIR%%/include/scriptaculous/effects.js
+%%WWWDIR%%/include/scriptaculous/prototype.js
+%%WWWDIR%%/include/scriptaculous/scriptaculous.js
+%%WWWDIR%%/include/scriptaculous/slider.js
+%%WWWDIR%%/include/scriptaculous/unittest.js
+%%WWWDIR%%/include/style.css
+%%WWWDIR%%/include/upload_file.php
+%%WWWDIR%%/include/utils/CommonUtils.php
+%%WWWDIR%%/include/utils/DeleteUtils.php
+%%WWWDIR%%/include/utils/DetailViewUtils.php
+%%WWWDIR%%/include/utils/EditViewUtils.php
+%%WWWDIR%%/include/utils/ExportUtils.php
+%%WWWDIR%%/include/utils/GetGroupUsers.php
+%%WWWDIR%%/include/utils/GetParentGroups.php
+%%WWWDIR%%/include/utils/GetUserGroups.php
+%%WWWDIR%%/include/utils/GraphUtils.php
+%%WWWDIR%%/include/utils/InventoryUtils.php
+%%WWWDIR%%/include/utils/ListViewUtils.php
+%%WWWDIR%%/include/utils/RecurringType.php
+%%WWWDIR%%/include/utils/SearchUtils.php
+%%WWWDIR%%/include/utils/UserInfoUtil.php
+%%WWWDIR%%/include/utils/export.php
+%%WWWDIR%%/include/utils/utils.php
+%%WWWDIR%%/include/vtiger-crm.gif
+%%WWWDIR%%/install/0welcome.php
+%%WWWDIR%%/install/1checkSystem.php
+%%WWWDIR%%/install/2setConfig.php
+%%WWWDIR%%/install/3confirmConfig.php
+%%WWWDIR%%/install/4createConfigFile.php
+%%WWWDIR%%/install/5createTables.inc.php
+%%WWWDIR%%/install/5createTables.php
+%%WWWDIR%%/install/populateSeedData.php
+%%WWWDIR%%/jscalendar/calendar-setup.js
+%%WWWDIR%%/jscalendar/calendar-win2k-cold-1.css
+%%WWWDIR%%/jscalendar/calendar.js
+%%WWWDIR%%/jscalendar/img.gif
+%%WWWDIR%%/jscalendar/lang/calendar-af.js
+%%WWWDIR%%/jscalendar/lang/calendar-br.js
+%%WWWDIR%%/jscalendar/lang/calendar-ca.js
+%%WWWDIR%%/jscalendar/lang/calendar-cs-win.js
+%%WWWDIR%%/jscalendar/lang/calendar-da.js
+%%WWWDIR%%/jscalendar/lang/calendar-de.js
+%%WWWDIR%%/jscalendar/lang/calendar-du.js
+%%WWWDIR%%/jscalendar/lang/calendar-el.js
+%%WWWDIR%%/jscalendar/lang/calendar-en.js
+%%WWWDIR%%/jscalendar/lang/calendar-es.js
+%%WWWDIR%%/jscalendar/lang/calendar-fi.js
+%%WWWDIR%%/jscalendar/lang/calendar-fr.js
+%%WWWDIR%%/jscalendar/lang/calendar-hr-utf8.js
+%%WWWDIR%%/jscalendar/lang/calendar-hr.js
+%%WWWDIR%%/jscalendar/lang/calendar-hu.js
+%%WWWDIR%%/jscalendar/lang/calendar-it.js
+%%WWWDIR%%/jscalendar/lang/calendar-jp.js
+%%WWWDIR%%/jscalendar/lang/calendar-ko-utf8.js
+%%WWWDIR%%/jscalendar/lang/calendar-ko.js
+%%WWWDIR%%/jscalendar/lang/calendar-lt-utf8.js
+%%WWWDIR%%/jscalendar/lang/calendar-lt.js
+%%WWWDIR%%/jscalendar/lang/calendar-nl.js
+%%WWWDIR%%/jscalendar/lang/calendar-no.js
+%%WWWDIR%%/jscalendar/lang/calendar-pl-utf8.js
+%%WWWDIR%%/jscalendar/lang/calendar-pl.js
+%%WWWDIR%%/jscalendar/lang/calendar-pt.js
+%%WWWDIR%%/jscalendar/lang/calendar-ro.js
+%%WWWDIR%%/jscalendar/lang/calendar-ru.js
+%%WWWDIR%%/jscalendar/lang/calendar-si.js
+%%WWWDIR%%/jscalendar/lang/calendar-sk.js
+%%WWWDIR%%/jscalendar/lang/calendar-sp.js
+%%WWWDIR%%/jscalendar/lang/calendar-sv.js
+%%WWWDIR%%/jscalendar/lang/calendar-tr.js
+%%WWWDIR%%/jscalendar/lang/calendar-zh.js
+%%WWWDIR%%/jscalendar/menuarrow.gif
+%%WWWDIR%%/jscalendar/menuarrow2.gif
+%%WWWDIR%%/license/License_linux.txt
+%%WWWDIR%%/license/License_windows.txt
+%%WWWDIR%%/log4php/Logger.php
+%%WWWDIR%%/log4php/LoggerAppender.php
+%%WWWDIR%%/log4php/LoggerAppenderSkeleton.php
+%%WWWDIR%%/log4php/LoggerBasicConfigurator.php
+%%WWWDIR%%/log4php/LoggerCategory.php
+%%WWWDIR%%/log4php/LoggerDefaultCategoryFactory.php
+%%WWWDIR%%/log4php/LoggerHierarchy.php
+%%WWWDIR%%/log4php/LoggerLayout.php
+%%WWWDIR%%/log4php/LoggerLevel.php
+%%WWWDIR%%/log4php/LoggerLog.php
+%%WWWDIR%%/log4php/LoggerMDC.php
+%%WWWDIR%%/log4php/LoggerManager.php
+%%WWWDIR%%/log4php/LoggerNDC.php
+%%WWWDIR%%/log4php/LoggerPropertyConfigurator.php
+%%WWWDIR%%/log4php/LoggerRoot.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderConsole.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderDailyFile.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderDb.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderEcho.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderFile.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderMail.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderMailEvent.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderNull.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderPhp.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderRollingFile.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderSocket.php
+%%WWWDIR%%/log4php/appenders/LoggerAppenderSyslog.php
+%%WWWDIR%%/log4php/config/LoggerPropertyGetter.php
+%%WWWDIR%%/log4php/config/LoggerPropertySetter.php
+%%WWWDIR%%/log4php/helpers/LoggerFormattingInfo.php
+%%WWWDIR%%/log4php/helpers/LoggerOptionConverter.php
+%%WWWDIR%%/log4php/helpers/LoggerPatternConverter.php
+%%WWWDIR%%/log4php/helpers/LoggerPatternParser.php
+%%WWWDIR%%/log4php/helpers/LoggerTransform.php
+%%WWWDIR%%/log4php/layouts/LoggerLayoutHtml.php
+%%WWWDIR%%/log4php/layouts/LoggerLayoutSimple.php
+%%WWWDIR%%/log4php/layouts/LoggerLayoutTTCC.php
+%%WWWDIR%%/log4php/layouts/LoggerPatternLayout.php
+%%WWWDIR%%/log4php/layouts/LoggerXmlLayout.php
+%%WWWDIR%%/log4php/or/LoggerDefaultRenderer.php
+%%WWWDIR%%/log4php/or/LoggerObjectRenderer.php
+%%WWWDIR%%/log4php/or/LoggerRendererMap.php
+%%WWWDIR%%/log4php/spi/LoggerConfigurator.php
+%%WWWDIR%%/log4php/spi/LoggerFactory.php
+%%WWWDIR%%/log4php/spi/LoggerFilter.php
+%%WWWDIR%%/log4php/spi/LoggerLocationInfo.php
+%%WWWDIR%%/log4php/spi/LoggerLoggingEvent.php
+%%WWWDIR%%/log4php/varia/LoggerDenyAllFilter.php
+%%WWWDIR%%/log4php/varia/LoggerLevelMatchFilter.php
+%%WWWDIR%%/log4php/varia/LoggerLevelRangeFilter.php
+%%WWWDIR%%/log4php/varia/LoggerStringMatchFilter.php
+%%WWWDIR%%/log4php/xml/LoggerDOMConfigurator.php
+%%WWWDIR%%/logs/todel.txt.txt
+%%WWWDIR%%/modules/Accounts/Accounts.js
+%%WWWDIR%%/modules/Accounts/Accounts.php
+%%WWWDIR%%/modules/Accounts/AccountsAjax.php
+%%WWWDIR%%/modules/Accounts/AddressChange.php
+%%WWWDIR%%/modules/Accounts/CallRelatedList.php
+%%WWWDIR%%/modules/Accounts/CustomAction.php
+%%WWWDIR%%/modules/Accounts/CustomView.php
+%%WWWDIR%%/modules/Accounts/Delete.php
+%%WWWDIR%%/modules/Accounts/DetailView.php
+%%WWWDIR%%/modules/Accounts/DetailViewAjax.php
+%%WWWDIR%%/modules/Accounts/EditView.php
+%%WWWDIR%%/modules/Accounts/HeadLines.php
+%%WWWDIR%%/modules/Accounts/Import.php
+%%WWWDIR%%/modules/Accounts/ListView.php
+%%WWWDIR%%/modules/Accounts/ListViewTop.php
+%%WWWDIR%%/modules/Accounts/Merge.php
+%%WWWDIR%%/modules/Accounts/Popup.php
+%%WWWDIR%%/modules/Accounts/PopupSearchForm.html
+%%WWWDIR%%/modules/Accounts/QuickCreate.php
+%%WWWDIR%%/modules/Accounts/Save.php
+%%WWWDIR%%/modules/Accounts/TagCloud.php
+%%WWWDIR%%/modules/Accounts/Tickerdetail.php
+%%WWWDIR%%/modules/Accounts/index.php
+%%WWWDIR%%/modules/Accounts/language/en_us.lang.php
+%%WWWDIR%%/modules/Accounts/updateRelations.php
+%%WWWDIR%%/modules/Administration/Forms.php
+%%WWWDIR%%/modules/Administration/index.php
+%%WWWDIR%%/modules/Administration/language/en_us.lang.php
+%%WWWDIR%%/modules/Calendar/Activity.php
+%%WWWDIR%%/modules/Calendar/ActivityAjax.php
+%%WWWDIR%%/modules/Calendar/Appointment.php
+%%WWWDIR%%/modules/Calendar/Calendar.js
+%%WWWDIR%%/modules/Calendar/Calendar.php
+%%WWWDIR%%/modules/Calendar/CalendarAjax.php
+%%WWWDIR%%/modules/Calendar/CalendarCommon.php
+%%WWWDIR%%/modules/Calendar/CustomView.php
+%%WWWDIR%%/modules/Calendar/Date.php
+%%WWWDIR%%/modules/Calendar/Delete.php
+%%WWWDIR%%/modules/Calendar/DetailView.php
+%%WWWDIR%%/modules/Calendar/EditView.php
+%%WWWDIR%%/modules/Calendar/ListView.php
+%%WWWDIR%%/modules/Calendar/OpenListView.php
+%%WWWDIR%%/modules/Calendar/QuickCreate.php
+%%WWWDIR%%/modules/Calendar/RenderRelatedListUI.php
+%%WWWDIR%%/modules/Calendar/Save.php
+%%WWWDIR%%/modules/Calendar/SendReminder.bat
+%%WWWDIR%%/modules/Calendar/TagCloud.php
+%%WWWDIR%%/modules/Calendar/TodoSave.php
+%%WWWDIR%%/modules/Calendar/addEventUI.php
+%%WWWDIR%%/modules/Calendar/calendarLayout.php
+%%WWWDIR%%/modules/Calendar/calendar_share.php
+%%WWWDIR%%/modules/Calendar/disable_sharing.php
+%%WWWDIR%%/modules/Calendar/header.php
+%%WWWDIR%%/modules/Calendar/index.php
+%%WWWDIR%%/modules/Calendar/language/en_us.lang.php
+%%WWWDIR%%/modules/Calendar/new_calendar.php
+%%WWWDIR%%/modules/Calendar/script.js
+%%WWWDIR%%/modules/Calendar/updateCalendarSharing.php
+%%WWWDIR%%/modules/Calendar/updateRelations.php
+%%WWWDIR%%/modules/Campaigns/CallRelatedList.php
+%%WWWDIR%%/modules/Campaigns/Campaigns.js
+%%WWWDIR%%/modules/Campaigns/Campaigns.php
+%%WWWDIR%%/modules/Campaigns/CampaignsAjax.php
+%%WWWDIR%%/modules/Campaigns/CustomView.php
+%%WWWDIR%%/modules/Campaigns/Delete.php
+%%WWWDIR%%/modules/Campaigns/DetailView.php
+%%WWWDIR%%/modules/Campaigns/DetailViewAjax.php
+%%WWWDIR%%/modules/Campaigns/EditView.php
+%%WWWDIR%%/modules/Campaigns/ListView.php
+%%WWWDIR%%/modules/Campaigns/LoadList.php
+%%WWWDIR%%/modules/Campaigns/Popup.php
+%%WWWDIR%%/modules/Campaigns/QuickCreate.php
+%%WWWDIR%%/modules/Campaigns/Save.php
+%%WWWDIR%%/modules/Campaigns/TagCloud.php
+%%WWWDIR%%/modules/Campaigns/index.php
+%%WWWDIR%%/modules/Campaigns/language/en_us.lang.php
+%%WWWDIR%%/modules/Campaigns/updateRelations.php
+%%WWWDIR%%/modules/Contacts/CallRelatedList.php
+%%WWWDIR%%/modules/Contacts/Contacts.js
+%%WWWDIR%%/modules/Contacts/Contacts.php
+%%WWWDIR%%/modules/Contacts/ContactsAjax.php
+%%WWWDIR%%/modules/Contacts/CustomAction.php
+%%WWWDIR%%/modules/Contacts/CustomView.php
+%%WWWDIR%%/modules/Contacts/DelImage.php
+%%WWWDIR%%/modules/Contacts/Delete.php
+%%WWWDIR%%/modules/Contacts/DetailView.php
+%%WWWDIR%%/modules/Contacts/DetailViewAjax.php
+%%WWWDIR%%/modules/Contacts/EditView.php
+%%WWWDIR%%/modules/Contacts/Import.php
+%%WWWDIR%%/modules/Contacts/ListView.php
+%%WWWDIR%%/modules/Contacts/Merge.php
+%%WWWDIR%%/modules/Contacts/Popup.php
+%%WWWDIR%%/modules/Contacts/PopupSearchForm.html
+%%WWWDIR%%/modules/Contacts/Popup_picker.html
+%%WWWDIR%%/modules/Contacts/QuickCreate.php
+%%WWWDIR%%/modules/Contacts/Save.php
+%%WWWDIR%%/modules/Contacts/TagCloud.php
+%%WWWDIR%%/modules/Contacts/chat.css
+%%WWWDIR%%/modules/Contacts/chat.php
+%%WWWDIR%%/modules/Contacts/contactSeedData.php
+%%WWWDIR%%/modules/Contacts/imgs/2tbarPrivateChat.gif
+%%WWWDIR%%/modules/Contacts/imgs/2tbarPublicChat.gif
+%%WWWDIR%%/modules/Contacts/imgs/box_BL.gif
+%%WWWDIR%%/modules/Contacts/imgs/box_BR.gif
+%%WWWDIR%%/modules/Contacts/imgs/box_M.gif
+%%WWWDIR%%/modules/Contacts/imgs/box_ML.gif
+%%WWWDIR%%/modules/Contacts/imgs/box_MR.gif
+%%WWWDIR%%/modules/Contacts/imgs/box_T.gif
+%%WWWDIR%%/modules/Contacts/imgs/box_TL.gif
+%%WWWDIR%%/modules/Contacts/imgs/box_TR.gif
+%%WWWDIR%%/modules/Contacts/imgs/btn_close.gif
+%%WWWDIR%%/modules/Contacts/imgs/btn_hide.gif
+%%WWWDIR%%/modules/Contacts/imgs/btn_send.gif
+%%WWWDIR%%/modules/Contacts/imgs/bx_B.gif
+%%WWWDIR%%/modules/Contacts/imgs/close.gif
+%%WWWDIR%%/modules/Contacts/imgs/hide.gif
+%%WWWDIR%%/modules/Contacts/imgs/icone_chat.gif
+%%WWWDIR%%/modules/Contacts/imgs/icone_keyb.gif
+%%WWWDIR%%/modules/Contacts/imgs/site_bg.gif
+%%WWWDIR%%/modules/Contacts/imgs/user_icon.gif
+%%WWWDIR%%/modules/Contacts/index.php
+%%WWWDIR%%/modules/Contacts/js/ajax.js
+%%WWWDIR%%/modules/Contacts/js/chat.js
+%%WWWDIR%%/modules/Contacts/js/css-window_p.js
+%%WWWDIR%%/modules/Contacts/js/dom-drag_p.js
+%%WWWDIR%%/modules/Contacts/language/en_us.lang.php
+%%WWWDIR%%/modules/Contacts/updateRelations.php
+%%WWWDIR%%/modules/Contacts/vtchat.php
+%%WWWDIR%%/modules/CustomView/CustomView.js
+%%WWWDIR%%/modules/CustomView/CustomView.php
+%%WWWDIR%%/modules/CustomView/Delete.php
+%%WWWDIR%%/modules/CustomView/EditView.php
+%%WWWDIR%%/modules/CustomView/Forms.php
+%%WWWDIR%%/modules/CustomView/ListViewTop.php
+%%WWWDIR%%/modules/CustomView/PopulateCustomView.php
+%%WWWDIR%%/modules/CustomView/Save.php
+%%WWWDIR%%/modules/CustomView/SaveAction.php
+%%WWWDIR%%/modules/CustomView/SendMailAction.php
+%%WWWDIR%%/modules/CustomView/index.php
+%%WWWDIR%%/modules/CustomView/language/en_us.lang.php
+%%WWWDIR%%/modules/Dashboard/Chart_lead_source_by_outcome.php
+%%WWWDIR%%/modules/Dashboard/Chart_my_pipeline_by_sales_stage.php
+%%WWWDIR%%/modules/Dashboard/Chart_outcome_by_month.php
+%%WWWDIR%%/modules/Dashboard/Chart_pipeline_by_lead_source.php
+%%WWWDIR%%/modules/Dashboard/Chart_pipeline_by_sales_stage.php
+%%WWWDIR%%/modules/Dashboard/DashboardAjax.php
+%%WWWDIR%%/modules/Dashboard/DashboardHome.php
+%%WWWDIR%%/modules/Dashboard/DashboardHome_matrix.php
+%%WWWDIR%%/modules/Dashboard/Entity_charts.php
+%%WWWDIR%%/modules/Dashboard/Forms.php
+%%WWWDIR%%/modules/Dashboard/HomepageDB.php
+%%WWWDIR%%/modules/Dashboard/ReportsCharts.php
+%%WWWDIR%%/modules/Dashboard/accumulated_bargraph.php
+%%WWWDIR%%/modules/Dashboard/display_charts.php
+%%WWWDIR%%/modules/Dashboard/horizontal_bargraph.php
+%%WWWDIR%%/modules/Dashboard/index.php
+%%WWWDIR%%/modules/Dashboard/language/en_us.lang.php
+%%WWWDIR%%/modules/Dashboard/line_graph.php
+%%WWWDIR%%/modules/Dashboard/pie_graph.php
+%%WWWDIR%%/modules/Dashboard/vertical_bargraph.php
+%%WWWDIR%%/modules/Emails/CallRelatedList.php
+%%WWWDIR%%/modules/Emails/Choose.php
+%%WWWDIR%%/modules/Emails/ChooseEmail.php
+%%WWWDIR%%/modules/Emails/CustomView.php
+%%WWWDIR%%/modules/Emails/Delete.php
+%%WWWDIR%%/modules/Emails/DetailView.php
+%%WWWDIR%%/modules/Emails/EditView.php
+%%WWWDIR%%/modules/Emails/Emails.js
+%%WWWDIR%%/modules/Emails/Emails.php
+%%WWWDIR%%/modules/Emails/EmailsAjax.php
+%%WWWDIR%%/modules/Emails/ListView.php
+%%WWWDIR%%/modules/Emails/PHPMailer_LICENSE.txt
+%%WWWDIR%%/modules/Emails/Save.php
+%%WWWDIR%%/modules/Emails/SearchForm.html
+%%WWWDIR%%/modules/Emails/class.phpmailer.php
+%%WWWDIR%%/modules/Emails/class.smtp.php
+%%WWWDIR%%/modules/Emails/gotodownload.php
+%%WWWDIR%%/modules/Emails/index.php
+%%WWWDIR%%/modules/Emails/language/en_us.lang.php
+%%WWWDIR%%/modules/Emails/mail.php
+%%WWWDIR%%/modules/Emails/mailSelect.php
+%%WWWDIR%%/modules/Emails/mailbox.php
+%%WWWDIR%%/modules/Emails/mailsend.php
+%%WWWDIR%%/modules/Emails/sendmail.php
+%%WWWDIR%%/modules/Emails/templates/testemailtemplateusage.php
+%%WWWDIR%%/modules/Emails/templates/todel.txt
+%%WWWDIR%%/modules/Emails/updateRelations.php
+%%WWWDIR%%/modules/Emails/webmailsend.php
+%%WWWDIR%%/modules/Faq/CustomView.php
+%%WWWDIR%%/modules/Faq/Delete.php
+%%WWWDIR%%/modules/Faq/DetailView.php
+%%WWWDIR%%/modules/Faq/DetailViewAjax.php
+%%WWWDIR%%/modules/Faq/EditView.php
+%%WWWDIR%%/modules/Faq/Faq.js
+%%WWWDIR%%/modules/Faq/Faq.php
+%%WWWDIR%%/modules/Faq/FaqAjax.php
+%%WWWDIR%%/modules/Faq/ListFaq.php
+%%WWWDIR%%/modules/Faq/ListView.php
+%%WWWDIR%%/modules/Faq/Save.php
+%%WWWDIR%%/modules/Faq/SearchForm.html
+%%WWWDIR%%/modules/Faq/TagCloud.php
+%%WWWDIR%%/modules/Faq/index.php
+%%WWWDIR%%/modules/Faq/language/en_us.lang.php
+%%WWWDIR%%/modules/Help/Forms.php
+%%WWWDIR%%/modules/Help/index.php
+%%WWWDIR%%/modules/Help/language/en_us.lang.php
+%%WWWDIR%%/modules/HelpDesk/CallRelatedList.php
+%%WWWDIR%%/modules/HelpDesk/ConvertAsFAQ.php
+%%WWWDIR%%/modules/HelpDesk/ConvertToEntities.php
+%%WWWDIR%%/modules/HelpDesk/CumulStatistics.php
+%%WWWDIR%%/modules/HelpDesk/CustomView.php
+%%WWWDIR%%/modules/HelpDesk/Delete.php
+%%WWWDIR%%/modules/HelpDesk/DetailView.php
+%%WWWDIR%%/modules/HelpDesk/DetailViewAjax.php
+%%WWWDIR%%/modules/HelpDesk/EditView.php
+%%WWWDIR%%/modules/HelpDesk/HelpDesk.js
+%%WWWDIR%%/modules/HelpDesk/HelpDesk.php
+%%WWWDIR%%/modules/HelpDesk/HelpDeskAjax.php
+%%WWWDIR%%/modules/HelpDesk/ListTickets.php
+%%WWWDIR%%/modules/HelpDesk/ListView.php
+%%WWWDIR%%/modules/HelpDesk/Merge.php
+%%WWWDIR%%/modules/HelpDesk/Popup.php
+%%WWWDIR%%/modules/HelpDesk/QuickCreate.php
+%%WWWDIR%%/modules/HelpDesk/Save.php
+%%WWWDIR%%/modules/HelpDesk/SearchForm.html
+%%WWWDIR%%/modules/HelpDesk/TagCloud.php
+%%WWWDIR%%/modules/HelpDesk/TicketStatisticsUtil.php
+%%WWWDIR%%/modules/HelpDesk/index.php
+%%WWWDIR%%/modules/HelpDesk/language/en_us.lang.php
+%%WWWDIR%%/modules/Home/Forms.php
+%%WWWDIR%%/modules/Home/LastViewed.php
+%%WWWDIR%%/modules/Home/UnifiedSearch.php
+%%WWWDIR%%/modules/Home/home_rss.php
+%%WWWDIR%%/modules/Home/index.php
+%%WWWDIR%%/modules/Home/language/en_us.lang.php
+%%WWWDIR%%/modules/Import/Forms.php
+%%WWWDIR%%/modules/Import/ImportAccount.php
+%%WWWDIR%%/modules/Import/ImportAjax.php
+%%WWWDIR%%/modules/Import/ImportButton.php
+%%WWWDIR%%/modules/Import/ImportContact.php
+%%WWWDIR%%/modules/Import/ImportLead.php
+%%WWWDIR%%/modules/Import/ImportMap.php
+%%WWWDIR%%/modules/Import/ImportOpportunity.php
+%%WWWDIR%%/modules/Import/ImportProduct.php
+%%WWWDIR%%/modules/Import/ImportSave.php
+%%WWWDIR%%/modules/Import/ImportStep1.php
+%%WWWDIR%%/modules/Import/ImportStep2.php
+%%WWWDIR%%/modules/Import/ImportStep3.php
+%%WWWDIR%%/modules/Import/ImportSteplast.php
+%%WWWDIR%%/modules/Import/ImportStepundo.php
+%%WWWDIR%%/modules/Import/UsersLastImport.php
+%%WWWDIR%%/modules/Import/error.php
+%%WWWDIR%%/modules/Import/index.php
+%%WWWDIR%%/modules/Import/language/en_us.lang.php
+%%WWWDIR%%/modules/Import/parse_utils.php
+%%WWWDIR%%/modules/Invoice/CallRelatedList.php
+%%WWWDIR%%/modules/Invoice/CreatePDF.php
+%%WWWDIR%%/modules/Invoice/CustomView.php
+%%WWWDIR%%/modules/Invoice/Delete.php
+%%WWWDIR%%/modules/Invoice/DetailView.php
+%%WWWDIR%%/modules/Invoice/DetailViewAjax.php
+%%WWWDIR%%/modules/Invoice/EditView.php
+%%WWWDIR%%/modules/Invoice/Invoice.js
+%%WWWDIR%%/modules/Invoice/Invoice.php
+%%WWWDIR%%/modules/Invoice/InvoiceAjax.php
+%%WWWDIR%%/modules/Invoice/ListTopInvoice.php
+%%WWWDIR%%/modules/Invoice/ListView.php
+%%WWWDIR%%/modules/Invoice/Popup.php
+%%WWWDIR%%/modules/Invoice/Save.php
+%%WWWDIR%%/modules/Invoice/TagCloud.php
+%%WWWDIR%%/modules/Invoice/index.php
+%%WWWDIR%%/modules/Invoice/language/en_us.lang.php
+%%WWWDIR%%/modules/Invoice/pdf_templates/footer.php
+%%WWWDIR%%/modules/Invoice/pdf_templates/header.php
+%%WWWDIR%%/modules/Invoice/pdf_templates/lastpage/body.php
+%%WWWDIR%%/modules/Invoice/pdf_templates/lastpage/footer.php
+%%WWWDIR%%/modules/Leads/CallRelatedList.php
+%%WWWDIR%%/modules/Leads/ConvertLead.html
+%%WWWDIR%%/modules/Leads/ConvertLead.php
+%%WWWDIR%%/modules/Leads/CustomAction.php
+%%WWWDIR%%/modules/Leads/CustomView.php
+%%WWWDIR%%/modules/Leads/Delete.php
+%%WWWDIR%%/modules/Leads/DetailView.php
+%%WWWDIR%%/modules/Leads/DetailViewAjax.php
+%%WWWDIR%%/modules/Leads/EditView.php
+%%WWWDIR%%/modules/Leads/Import.php
+%%WWWDIR%%/modules/Leads/LeadConvertToEntities.php
+%%WWWDIR%%/modules/Leads/Leads.js
+%%WWWDIR%%/modules/Leads/Leads.php
+%%WWWDIR%%/modules/Leads/LeadsAjax.php
+%%WWWDIR%%/modules/Leads/ListView.php
+%%WWWDIR%%/modules/Leads/ListViewTop.php
+%%WWWDIR%%/modules/Leads/Merge.php
+%%WWWDIR%%/modules/Leads/Popup.php
+%%WWWDIR%%/modules/Leads/PopupSearchForm.html
+%%WWWDIR%%/modules/Leads/Popup_picker.html
+%%WWWDIR%%/modules/Leads/QuickCreate.php
+%%WWWDIR%%/modules/Leads/Save.php
+%%WWWDIR%%/modules/Leads/TagCloud.php
+%%WWWDIR%%/modules/Leads/index.php
+%%WWWDIR%%/modules/Leads/language/en_us.lang.php
+%%WWWDIR%%/modules/Leads/result.php
+%%WWWDIR%%/modules/Leads/updateRelations.php
+%%WWWDIR%%/modules/Migration/DBChanges/42P2_to_50.php
+%%WWWDIR%%/modules/Migration/DBChanges/501_to_502.php
+%%WWWDIR%%/modules/Migration/DBChanges/502_to_503rc2.php
+%%WWWDIR%%/modules/Migration/DBChanges/503rc2_to_503.php
+%%WWWDIR%%/modules/Migration/Migration.php
+%%WWWDIR%%/modules/Migration/MigrationCheck.php
+%%WWWDIR%%/modules/Migration/MigrationInfo.php
+%%WWWDIR%%/modules/Migration/MigrationStep1.php
+%%WWWDIR%%/modules/Migration/PatchApply.php
+%%WWWDIR%%/modules/Migration/deleteCustomFields.php
+%%WWWDIR%%/modules/Migration/index.php
+%%WWWDIR%%/modules/Migration/language/en_us.lang.php
+%%WWWDIR%%/modules/Migration/rename_tables.php
+%%WWWDIR%%/modules/Migration/updateCurrency.php
+%%WWWDIR%%/modules/Migration/versions.php
+%%WWWDIR%%/modules/Notes/CustomView.php
+%%WWWDIR%%/modules/Notes/Delete.php
+%%WWWDIR%%/modules/Notes/DetailView.php
+%%WWWDIR%%/modules/Notes/DetailViewAjax.php
+%%WWWDIR%%/modules/Notes/EditView.php
+%%WWWDIR%%/modules/Notes/ListView.php
+%%WWWDIR%%/modules/Notes/Note.php
+%%WWWDIR%%/modules/Notes/Notes.js
+%%WWWDIR%%/modules/Notes/Notes.php
+%%WWWDIR%%/modules/Notes/NotesAjax.php
+%%WWWDIR%%/modules/Notes/QuickCreate.php
+%%WWWDIR%%/modules/Notes/Save.php
+%%WWWDIR%%/modules/Notes/TagCloud.php
+%%WWWDIR%%/modules/Notes/index.php
+%%WWWDIR%%/modules/Notes/language/en_us.lang.php
+%%WWWDIR%%/modules/Portal/Delete.php
+%%WWWDIR%%/modules/Portal/ListView.php
+%%WWWDIR%%/modules/Portal/Popup.php
+%%WWWDIR%%/modules/Portal/Portal.js
+%%WWWDIR%%/modules/Portal/Portal.php
+%%WWWDIR%%/modules/Portal/PortalAjax.php
+%%WWWDIR%%/modules/Portal/Save.php
+%%WWWDIR%%/modules/Portal/index.php
+%%WWWDIR%%/modules/Portal/language/en_us.lang.php
+%%WWWDIR%%/modules/Potentials/CallRelatedList.php
+%%WWWDIR%%/modules/Potentials/Charts.php
+%%WWWDIR%%/modules/Potentials/CustomView.php
+%%WWWDIR%%/modules/Potentials/Delete.php
+%%WWWDIR%%/modules/Potentials/DetailView.php
+%%WWWDIR%%/modules/Potentials/DetailViewAjax.php
+%%WWWDIR%%/modules/Potentials/EditView.php
+%%WWWDIR%%/modules/Potentials/Import.php
+%%WWWDIR%%/modules/Potentials/ListView.php
+%%WWWDIR%%/modules/Potentials/ListViewTop.php
+%%WWWDIR%%/modules/Potentials/Opportunity.php
+%%WWWDIR%%/modules/Potentials/Popup.php
+%%WWWDIR%%/modules/Potentials/PopupSearchForm.html
+%%WWWDIR%%/modules/Potentials/Popup_picker.html
+%%WWWDIR%%/modules/Potentials/Potentials.js
+%%WWWDIR%%/modules/Potentials/Potentials.php
+%%WWWDIR%%/modules/Potentials/PotentialsAjax.php
+%%WWWDIR%%/modules/Potentials/QuickCreate.php
+%%WWWDIR%%/modules/Potentials/Save.php
+%%WWWDIR%%/modules/Potentials/TagCloud.php
+%%WWWDIR%%/modules/Potentials/index.php
+%%WWWDIR%%/modules/Potentials/language/en_us.lang.php
+%%WWWDIR%%/modules/Potentials/updateRelations.php
+%%WWWDIR%%/modules/PriceBooks/CallRelatedList.php
+%%WWWDIR%%/modules/PriceBooks/CustomView.php
+%%WWWDIR%%/modules/PriceBooks/Delete.php
+%%WWWDIR%%/modules/PriceBooks/DetailView.php
+%%WWWDIR%%/modules/PriceBooks/DetailViewAjax.php
+%%WWWDIR%%/modules/PriceBooks/EditView.php
+%%WWWDIR%%/modules/PriceBooks/ListView.php
+%%WWWDIR%%/modules/PriceBooks/Popup.php
+%%WWWDIR%%/modules/PriceBooks/PriceBooks.js
+%%WWWDIR%%/modules/PriceBooks/PriceBooks.php
+%%WWWDIR%%/modules/PriceBooks/PriceBooksAjax.php
+%%WWWDIR%%/modules/PriceBooks/QuickCreate.php
+%%WWWDIR%%/modules/PriceBooks/Save.php
+%%WWWDIR%%/modules/PriceBooks/TagCloud.php
+%%WWWDIR%%/modules/PriceBooks/index.php
+%%WWWDIR%%/modules/PriceBooks/language/en_us.lang.php
+%%WWWDIR%%/modules/Products/AddProductToPriceBooks.html
+%%WWWDIR%%/modules/Products/AddProductToPriceBooks.php
+%%WWWDIR%%/modules/Products/AddProductsToPriceBook.html
+%%WWWDIR%%/modules/Products/AddProductsToPriceBook.php
+%%WWWDIR%%/modules/Products/CallRelatedList.php
+%%WWWDIR%%/modules/Products/CustomView.php
+%%WWWDIR%%/modules/Products/Delete.php
+%%WWWDIR%%/modules/Products/DeletePriceBookProductRel.php
+%%WWWDIR%%/modules/Products/DetailView.php
+%%WWWDIR%%/modules/Products/DetailViewAjax.php
+%%WWWDIR%%/modules/Products/EditListPrice.php
+%%WWWDIR%%/modules/Products/EditView.php
+%%WWWDIR%%/modules/Products/Import.php
+%%WWWDIR%%/modules/Products/InventoryTaxAjax.php
+%%WWWDIR%%/modules/Products/ListView.php
+%%WWWDIR%%/modules/Products/Popup.php
+%%WWWDIR%%/modules/Products/Products.js
+%%WWWDIR%%/modules/Products/Products.php
+%%WWWDIR%%/modules/Products/ProductsAjax.php
+%%WWWDIR%%/modules/Products/Productsslide.js
+%%WWWDIR%%/modules/Products/Save.php
+%%WWWDIR%%/modules/Products/TagCloud.php
+%%WWWDIR%%/modules/Products/UpdateListPrice.php
+%%WWWDIR%%/modules/Products/addPbProductRelToDB.php
+%%WWWDIR%%/modules/Products/index.php
+%%WWWDIR%%/modules/Products/language/en_us.lang.php
+%%WWWDIR%%/modules/Products/multifile.js
+%%WWWDIR%%/modules/Products/placeholder.gif
+%%WWWDIR%%/modules/Products/updateRelations.php
+%%WWWDIR%%/modules/PurchaseOrder/CallRelatedList.php
+%%WWWDIR%%/modules/PurchaseOrder/CreatePDF.php
+%%WWWDIR%%/modules/PurchaseOrder/CustomView.php
+%%WWWDIR%%/modules/PurchaseOrder/Delete.php
+%%WWWDIR%%/modules/PurchaseOrder/DetailView.php
+%%WWWDIR%%/modules/PurchaseOrder/DetailViewAjax.php
+%%WWWDIR%%/modules/PurchaseOrder/EditView.php
+%%WWWDIR%%/modules/PurchaseOrder/ListTopPurchaseOrder.php
+%%WWWDIR%%/modules/PurchaseOrder/ListView.php
+%%WWWDIR%%/modules/PurchaseOrder/Popup.php
+%%WWWDIR%%/modules/PurchaseOrder/PurchaseOrder.js
+%%WWWDIR%%/modules/PurchaseOrder/PurchaseOrder.php
+%%WWWDIR%%/modules/PurchaseOrder/PurchaseOrderAjax.php
+%%WWWDIR%%/modules/PurchaseOrder/Save.php
+%%WWWDIR%%/modules/PurchaseOrder/TagCloud.php
+%%WWWDIR%%/modules/PurchaseOrder/index.php
+%%WWWDIR%%/modules/PurchaseOrder/language/en_us.lang.php
+%%WWWDIR%%/modules/PurchaseOrder/pdf_templates/footer.php
+%%WWWDIR%%/modules/PurchaseOrder/pdf_templates/header.php
+%%WWWDIR%%/modules/PurchaseOrder/pdf_templates/lastpage/body.php
+%%WWWDIR%%/modules/PurchaseOrder/pdf_templates/lastpage/footer.php
+%%WWWDIR%%/modules/Quotes/CallRelatedList.php
+%%WWWDIR%%/modules/Quotes/CreatePDF.php
+%%WWWDIR%%/modules/Quotes/CustomView.php
+%%WWWDIR%%/modules/Quotes/Delete.php
+%%WWWDIR%%/modules/Quotes/DetailView.php
+%%WWWDIR%%/modules/Quotes/DetailViewAjax.php
+%%WWWDIR%%/modules/Quotes/EditView.php
+%%WWWDIR%%/modules/Quotes/ListTopQuotes.php
+%%WWWDIR%%/modules/Quotes/ListView.php
+%%WWWDIR%%/modules/Quotes/Popup.php
+%%WWWDIR%%/modules/Quotes/Quotes.js
+%%WWWDIR%%/modules/Quotes/Quotes.php
+%%WWWDIR%%/modules/Quotes/QuotesAjax.php
+%%WWWDIR%%/modules/Quotes/Save.php
+%%WWWDIR%%/modules/Quotes/TagCloud.php
+%%WWWDIR%%/modules/Quotes/index.php
+%%WWWDIR%%/modules/Quotes/language/en_us.lang.php
+%%WWWDIR%%/modules/Quotes/pdf_templates/footer.php
+%%WWWDIR%%/modules/Quotes/pdf_templates/header.php
+%%WWWDIR%%/modules/Quotes/pdf_templates/lastpage/body.php
+%%WWWDIR%%/modules/Quotes/pdf_templates/lastpage/footer.php
+%%WWWDIR%%/modules/Reports/AdvancedFilter.php
+%%WWWDIR%%/modules/Reports/ChangeFolder.php
+%%WWWDIR%%/modules/Reports/CheckReport.php
+%%WWWDIR%%/modules/Reports/CreatePDF.php
+%%WWWDIR%%/modules/Reports/CreateXL.php
+%%WWWDIR%%/modules/Reports/Delete.php
+%%WWWDIR%%/modules/Reports/DeleteReportFolder.php
+%%WWWDIR%%/modules/Reports/Forms.php
+%%WWWDIR%%/modules/Reports/ListView.php
+%%WWWDIR%%/modules/Reports/NewReport0.php
+%%WWWDIR%%/modules/Reports/NewReport1.php
+%%WWWDIR%%/modules/Reports/PopulateReports.php
+%%WWWDIR%%/modules/Reports/PrintReport.php
+%%WWWDIR%%/modules/Reports/ReportColumns.php
+%%WWWDIR%%/modules/Reports/ReportColumnsTotal.php
+%%WWWDIR%%/modules/Reports/ReportFilters.php
+%%WWWDIR%%/modules/Reports/ReportGrouping.php
+%%WWWDIR%%/modules/Reports/ReportRun.php
+%%WWWDIR%%/modules/Reports/ReportType.php
+%%WWWDIR%%/modules/Reports/Reports.js
+%%WWWDIR%%/modules/Reports/Reports.php
+%%WWWDIR%%/modules/Reports/ReportsAjax.php
+%%WWWDIR%%/modules/Reports/Save.php
+%%WWWDIR%%/modules/Reports/SaveAndRun.php
+%%WWWDIR%%/modules/Reports/SaveReport.php
+%%WWWDIR%%/modules/Reports/SaveReport0.php
+%%WWWDIR%%/modules/Reports/SaveReportFolder.php
+%%WWWDIR%%/modules/Reports/StandardFilter.php
+%%WWWDIR%%/modules/Reports/index.php
+%%WWWDIR%%/modules/Reports/language/en_us.lang.php
+%%WWWDIR%%/modules/Rss/Delete.php
+%%WWWDIR%%/modules/Rss/Forms.php
+%%WWWDIR%%/modules/Rss/ListView.html
+%%WWWDIR%%/modules/Rss/ListView.php
+%%WWWDIR%%/modules/Rss/Popup.html
+%%WWWDIR%%/modules/Rss/Popup.php
+%%WWWDIR%%/modules/Rss/Rss.js
+%%WWWDIR%%/modules/Rss/Rss.php
+%%WWWDIR%%/modules/Rss/RssAjax.php
+%%WWWDIR%%/modules/Rss/Save.php
+%%WWWDIR%%/modules/Rss/Star.php
+%%WWWDIR%%/modules/Rss/index.php
+%%WWWDIR%%/modules/Rss/language/en_us.lang.php
+%%WWWDIR%%/modules/SalesOrder/CallRelatedList.php
+%%WWWDIR%%/modules/SalesOrder/CreateSOPDF.php
+%%WWWDIR%%/modules/SalesOrder/CustomView.php
+%%WWWDIR%%/modules/SalesOrder/Delete.php
+%%WWWDIR%%/modules/SalesOrder/DetailView.php
+%%WWWDIR%%/modules/SalesOrder/DetailViewAjax.php
+%%WWWDIR%%/modules/SalesOrder/EditView.php
+%%WWWDIR%%/modules/SalesOrder/ListTopSalesOrder.php
+%%WWWDIR%%/modules/SalesOrder/ListView.php
+%%WWWDIR%%/modules/SalesOrder/Popup.php
+%%WWWDIR%%/modules/SalesOrder/SalesOrder.js
+%%WWWDIR%%/modules/SalesOrder/SalesOrder.php
+%%WWWDIR%%/modules/SalesOrder/SalesOrderAjax.php
+%%WWWDIR%%/modules/SalesOrder/Save.php
+%%WWWDIR%%/modules/SalesOrder/TagCloud.php
+%%WWWDIR%%/modules/SalesOrder/index.php
+%%WWWDIR%%/modules/SalesOrder/language/en_us.lang.php
+%%WWWDIR%%/modules/SalesOrder/pdf_templates/footer.php
+%%WWWDIR%%/modules/SalesOrder/pdf_templates/header.php
+%%WWWDIR%%/modules/SalesOrder/pdf_templates/lastpage/body.php
+%%WWWDIR%%/modules/SalesOrder/pdf_templates/lastpage/footer.php
+%%WWWDIR%%/modules/Settings/AddCustomFieldToDB.php
+%%WWWDIR%%/modules/Settings/Announcements.php
+%%WWWDIR%%/modules/Settings/AuditTrail.php
+%%WWWDIR%%/modules/Settings/AuditTrailList.php
+%%WWWDIR%%/modules/Settings/BackupServerConfig.php
+%%WWWDIR%%/modules/Settings/CreateCustomField.php
+%%WWWDIR%%/modules/Settings/CreateSharingRule.php
+%%WWWDIR%%/modules/Settings/CurrencyDelete.php
+%%WWWDIR%%/modules/Settings/CurrencyDeleteStep1.php
+%%WWWDIR%%/modules/Settings/CurrencyEditView.php
+%%WWWDIR%%/modules/Settings/CurrencyListView.php
+%%WWWDIR%%/modules/Settings/CustomFieldList.php
+%%WWWDIR%%/modules/Settings/CustomInvoiceNo.php
+%%WWWDIR%%/modules/Settings/DefModuleView.php
+%%WWWDIR%%/modules/Settings/DefaultFieldPermissions.php
+%%WWWDIR%%/modules/Settings/DeleteCustomField.php
+%%WWWDIR%%/modules/Settings/DeleteLeadCustomFieldMapping.php
+%%WWWDIR%%/modules/Settings/DeleteMailAccount.php
+%%WWWDIR%%/modules/Settings/EditComboField.php
+%%WWWDIR%%/modules/Settings/EditCompanyDetails.php
+%%WWWDIR%%/modules/Settings/EditDefOrgFieldLevelAccess.php
+%%WWWDIR%%/modules/Settings/EditField.html
+%%WWWDIR%%/modules/Settings/EditInventoryNotification.php
+%%WWWDIR%%/modules/Settings/EditNotification.php
+%%WWWDIR%%/modules/Settings/EmailConfig.php
+%%WWWDIR%%/modules/Settings/Forms.php
+%%WWWDIR%%/modules/Settings/GroupDetailView.php
+%%WWWDIR%%/modules/Settings/LeadCustomFieldMapping.php
+%%WWWDIR%%/modules/Settings/ListLoginHistory.php
+%%WWWDIR%%/modules/Settings/ListMailAccount.php
+%%WWWDIR%%/modules/Settings/ListModuleOwners.php
+%%WWWDIR%%/modules/Settings/ListProfiles.php
+%%WWWDIR%%/modules/Settings/OrgSharingDetailView.php
+%%WWWDIR%%/modules/Settings/OrganizationConfig.php
+%%WWWDIR%%/modules/Settings/OrganizationTermsandConditions.php
+%%WWWDIR%%/modules/Settings/PickList.php
+%%WWWDIR%%/modules/Settings/ProxyServerConfig.php
+%%WWWDIR%%/modules/Settings/RoleDeleteStep1.php
+%%WWWDIR%%/modules/Settings/RoleDetailView.php
+%%WWWDIR%%/modules/Settings/Save.php
+%%WWWDIR%%/modules/Settings/SaveAuditTrail.php
+%%WWWDIR%%/modules/Settings/SaveCompany.php
+%%WWWDIR%%/modules/Settings/SaveConvertLead.php
+%%WWWDIR%%/modules/Settings/SaveCurrencyInfo.php
+%%WWWDIR%%/modules/Settings/SaveEnableBackup.php
+%%WWWDIR%%/modules/Settings/SaveInventoryNotification.php
+%%WWWDIR%%/modules/Settings/SaveNotification.php
+%%WWWDIR%%/modules/Settings/SaveRole.php
+%%WWWDIR%%/modules/Settings/SaveSharingRule.php
+%%WWWDIR%%/modules/Settings/SettingsAjax.php
+%%WWWDIR%%/modules/Settings/ShowAuditTrail.php
+%%WWWDIR%%/modules/Settings/TaxConfig.php
+%%WWWDIR%%/modules/Settings/UpdateComboValues.php
+%%WWWDIR%%/modules/Settings/UpdateDefaultFieldLevelAccess.php
+%%WWWDIR%%/modules/Settings/add2db.php
+%%WWWDIR%%/modules/Settings/createemailtemplate.php
+%%WWWDIR%%/modules/Settings/createnewgroup.php
+%%WWWDIR%%/modules/Settings/createrole.php
+%%WWWDIR%%/modules/Settings/deleteemailtemplate.php
+%%WWWDIR%%/modules/Settings/deletewordtemplate.php
+%%WWWDIR%%/modules/Settings/detailviewemailtemplate.php
+%%WWWDIR%%/modules/Settings/downloadfile.php
+%%WWWDIR%%/modules/Settings/editemailtemplate.php
+%%WWWDIR%%/modules/Settings/fieldtypes.html
+%%WWWDIR%%/modules/Settings/index.php
+%%WWWDIR%%/modules/Settings/language/en_us.lang.php
+%%WWWDIR%%/modules/Settings/listemailtemplates.php
+%%WWWDIR%%/modules/Settings/listgroups.php
+%%WWWDIR%%/modules/Settings/listinventorynotifications.php
+%%WWWDIR%%/modules/Settings/listnotificationschedulers.php
+%%WWWDIR%%/modules/Settings/listroles.php
+%%WWWDIR%%/modules/Settings/listwordtemplates.php
+%%WWWDIR%%/modules/Settings/mailmergedownloadfile.php
+%%WWWDIR%%/modules/Settings/profilePrivileges.php
+%%WWWDIR%%/modules/Settings/saveemailtemplate.php
+%%WWWDIR%%/modules/Settings/savetermsandconditions.php
+%%WWWDIR%%/modules/Settings/savewordtemplate.php
+%%WWWDIR%%/modules/Settings/upload.php
+%%WWWDIR%%/modules/Settings/vtigerCRM.CAB
+%%WWWDIR%%/modules/System/SystemAjax.php
+%%WWWDIR%%/modules/System/config.php
+%%WWWDIR%%/modules/System/distros.ini
+%%WWWDIR%%/modules/System/images/Arch.gif
+%%WWWDIR%%/modules/System/images/Cobalt.png
+%%WWWDIR%%/modules/System/images/Darwin.png
+%%WWWDIR%%/modules/System/images/Debian.png
+%%WWWDIR%%/modules/System/images/Fedora.png
+%%WWWDIR%%/modules/System/images/FreeBSD.png
+%%WWWDIR%%/modules/System/images/Gentoo.png
+%%WWWDIR%%/modules/System/images/Mandrake.png
+%%WWWDIR%%/modules/System/images/NetBSD.png
+%%WWWDIR%%/modules/System/images/OpenBSD.png
+%%WWWDIR%%/modules/System/images/Redhat.png
+%%WWWDIR%%/modules/System/images/Rubix.png
+%%WWWDIR%%/modules/System/images/Slackware.png
+%%WWWDIR%%/modules/System/images/Suse.png
+%%WWWDIR%%/modules/System/images/Trustix.gif
+%%WWWDIR%%/modules/System/images/free-eos.png
+%%WWWDIR%%/modules/System/images/lfs.png
+%%WWWDIR%%/modules/System/images/unknown.png
+%%WWWDIR%%/modules/System/images/xp.gif
+%%WWWDIR%%/modules/System/includes/XPath.class.php
+%%WWWDIR%%/modules/System/includes/class.Template.inc.php
+%%WWWDIR%%/modules/System/includes/class.error.inc.php
+%%WWWDIR%%/modules/System/includes/common_functions.php
+%%WWWDIR%%/modules/System/includes/lang/ar_utf8.php
+%%WWWDIR%%/modules/System/includes/lang/bg.php
+%%WWWDIR%%/modules/System/includes/lang/big5.php
+%%WWWDIR%%/modules/System/includes/lang/br.php
+%%WWWDIR%%/modules/System/includes/lang/ca.php
+%%WWWDIR%%/modules/System/includes/lang/cn.php
+%%WWWDIR%%/modules/System/includes/lang/cs.php
+%%WWWDIR%%/modules/System/includes/lang/ct.php
+%%WWWDIR%%/modules/System/includes/lang/da.php
+%%WWWDIR%%/modules/System/includes/lang/de.php
+%%WWWDIR%%/modules/System/includes/lang/en.php
+%%WWWDIR%%/modules/System/includes/lang/es.php
+%%WWWDIR%%/modules/System/includes/lang/et.php
+%%WWWDIR%%/modules/System/includes/lang/eu.php
+%%WWWDIR%%/modules/System/includes/lang/fi.php
+%%WWWDIR%%/modules/System/includes/lang/fr.php
+%%WWWDIR%%/modules/System/includes/lang/gr.php
+%%WWWDIR%%/modules/System/includes/lang/he.php
+%%WWWDIR%%/modules/System/includes/lang/hu.php
+%%WWWDIR%%/modules/System/includes/lang/id.php
+%%WWWDIR%%/modules/System/includes/lang/index.html
+%%WWWDIR%%/modules/System/includes/lang/is.php
+%%WWWDIR%%/modules/System/includes/lang/it.php
+%%WWWDIR%%/modules/System/includes/lang/ja.php
+%%WWWDIR%%/modules/System/includes/lang/jp.php
+%%WWWDIR%%/modules/System/includes/lang/ko.php
+%%WWWDIR%%/modules/System/includes/lang/lt.php
+%%WWWDIR%%/modules/System/includes/lang/lv.php
+%%WWWDIR%%/modules/System/includes/lang/nl.php
+%%WWWDIR%%/modules/System/includes/lang/no.php
+%%WWWDIR%%/modules/System/includes/lang/pl.php
+%%WWWDIR%%/modules/System/includes/lang/pt-br.php
+%%WWWDIR%%/modules/System/includes/lang/pt.php
+%%WWWDIR%%/modules/System/includes/lang/ro.php
+%%WWWDIR%%/modules/System/includes/lang/ru.php
+%%WWWDIR%%/modules/System/includes/lang/sk.php
+%%WWWDIR%%/modules/System/includes/lang/sv.php
+%%WWWDIR%%/modules/System/includes/lang/tr.php
+%%WWWDIR%%/modules/System/includes/lang/tw.php
+%%WWWDIR%%/modules/System/includes/mb/class.healthd.inc.php
+%%WWWDIR%%/modules/System/includes/mb/class.hwsensors.inc.php
+%%WWWDIR%%/modules/System/includes/mb/class.lmsensors.inc.php
+%%WWWDIR%%/modules/System/includes/mb/class.mbm5.inc.php
+%%WWWDIR%%/modules/System/includes/mb/class.mbmon.inc.php
+%%WWWDIR%%/modules/System/includes/mb/index.html
+%%WWWDIR%%/modules/System/includes/os/class.BSD.common.inc.php
+%%WWWDIR%%/modules/System/includes/os/class.Darwin.inc.php
+%%WWWDIR%%/modules/System/includes/os/class.FreeBSD.inc.php
+%%WWWDIR%%/modules/System/includes/os/class.HP-UX.inc.php
+%%WWWDIR%%/modules/System/includes/os/class.Linux.inc.php
+%%WWWDIR%%/modules/System/includes/os/class.NetBSD.inc.php
+%%WWWDIR%%/modules/System/includes/os/class.OpenBSD.inc.php
+%%WWWDIR%%/modules/System/includes/os/class.SunOS.inc.php
+%%WWWDIR%%/modules/System/includes/os/class.WINNT.inc.bak.php
+%%WWWDIR%%/modules/System/includes/os/class.WINNT.inc.php
+%%WWWDIR%%/modules/System/includes/os/class.parseProgs.inc.php
+%%WWWDIR%%/modules/System/includes/os/index.html
+%%WWWDIR%%/modules/System/includes/system_footer.php
+%%WWWDIR%%/modules/System/includes/system_header.php
+%%WWWDIR%%/modules/System/includes/xml/filesystems.php
+%%WWWDIR%%/modules/System/includes/xml/hardware.php
+%%WWWDIR%%/modules/System/includes/xml/hddtemp.php
+%%WWWDIR%%/modules/System/includes/xml/index.html
+%%WWWDIR%%/modules/System/includes/xml/mbinfo.php
+%%WWWDIR%%/modules/System/includes/xml/memory.php
+%%WWWDIR%%/modules/System/includes/xml/network.php
+%%WWWDIR%%/modules/System/includes/xml/vitals.php
+%%WWWDIR%%/modules/System/language/en_us.lang.php
+%%WWWDIR%%/modules/System/listsysconfig.php
+%%WWWDIR%%/modules/System/phpsysinfo.dtd
+%%WWWDIR%%/modules/System/systemconfig.php
+%%WWWDIR%%/modules/System/templates/classic/box.tpl
+%%WWWDIR%%/modules/System/templates/classic/classic.css
+%%WWWDIR%%/modules/System/templates/classic/form.tpl
+%%WWWDIR%%/modules/System/templates/classic/images/bar_left.gif
+%%WWWDIR%%/modules/System/templates/classic/images/bar_middle.gif
+%%WWWDIR%%/modules/System/templates/classic/images/bar_right.gif
+%%WWWDIR%%/modules/System/templates/classic/images/redbar_left.gif
+%%WWWDIR%%/modules/System/templates/classic/images/redbar_middle.gif
+%%WWWDIR%%/modules/System/templates/classic/images/redbar_right.gif
+%%WWWDIR%%/modules/System/templates/classic/images/trans.gif
+%%WWWDIR%%/modules/Users/AddMailAccount.php
+%%WWWDIR%%/modules/Users/Announcements.php
+%%WWWDIR%%/modules/Users/Authenticate.php
+%%WWWDIR%%/modules/Users/ChangePassword.php
+%%WWWDIR%%/modules/Users/CreateProfile.php
+%%WWWDIR%%/modules/Users/CreateUserPrivilegeFile.php
+%%WWWDIR%%/modules/Users/DefaultDataPopulator.php
+%%WWWDIR%%/modules/Users/Delete.php
+%%WWWDIR%%/modules/Users/DeleteGroup.php
+%%WWWDIR%%/modules/Users/DeleteProfile.php
+%%WWWDIR%%/modules/Users/DeleteRole.php
+%%WWWDIR%%/modules/Users/DeleteSharingRule.php
+%%WWWDIR%%/modules/Users/DeleteUser.php
+%%WWWDIR%%/modules/Users/DetailView.php
+%%WWWDIR%%/modules/Users/DetailViewAjax.php
+%%WWWDIR%%/modules/Users/EditView.php
+%%WWWDIR%%/modules/Users/Error.php
+%%WWWDIR%%/modules/Users/Forms.php
+%%WWWDIR%%/modules/Users/GroupDeleteStep1.php
+%%WWWDIR%%/modules/Users/ListView.php
+%%WWWDIR%%/modules/Users/Login.php
+%%WWWDIR%%/modules/Users/LoginHistory.php
+%%WWWDIR%%/modules/Users/Logout.php
+%%WWWDIR%%/modules/Users/OrgSharingEditView.php
+%%WWWDIR%%/modules/Users/Popup.php
+%%WWWDIR%%/modules/Users/ProfileDeleteStep1.php
+%%WWWDIR%%/modules/Users/RecalculateSharingRules.php
+%%WWWDIR%%/modules/Users/RenameProfile.php
+%%WWWDIR%%/modules/Users/RoleDragDrop.php
+%%WWWDIR%%/modules/Users/RolePopup.php
+%%WWWDIR%%/modules/Users/Save.php
+%%WWWDIR%%/modules/Users/SaveDefModuleView.php
+%%WWWDIR%%/modules/Users/SaveGroup.php
+%%WWWDIR%%/modules/Users/SaveMailAccount.php
+%%WWWDIR%%/modules/Users/SaveOrgSharing.php
+%%WWWDIR%%/modules/Users/SaveProfile.php
+%%WWWDIR%%/modules/Users/SearchForm.html
+%%WWWDIR%%/modules/Users/ShowHistory.html
+%%WWWDIR%%/modules/Users/ShowHistory.php
+%%WWWDIR%%/modules/Users/TemplateMerge.php
+%%WWWDIR%%/modules/Users/UpdateCustomInvoiceNo.php
+%%WWWDIR%%/modules/Users/UpdateProfileChanges.php
+%%WWWDIR%%/modules/Users/UserDeleteStep1.php
+%%WWWDIR%%/modules/Users/UserGroups.php
+%%WWWDIR%%/modules/Users/Users.js
+%%WWWDIR%%/modules/Users/Users.php
+%%WWWDIR%%/modules/Users/UsersAjax.php
+%%WWWDIR%%/modules/Users/about_us.php
+%%WWWDIR%%/modules/Users/binaryfilelist.php
+%%WWWDIR%%/modules/Users/deletewordtemplate.php
+%%WWWDIR%%/modules/Users/downloadfile.php
+%%WWWDIR%%/modules/Users/language/en_us.lang.php
+%%WWWDIR%%/modules/Users/lookupemailtemplates.php
+%%WWWDIR%%/modules/Users/massChangeStatus.php
+%%WWWDIR%%/modules/Users/massdelete.php
+%%WWWDIR%%/modules/Users/notify_detail.php
+%%WWWDIR%%/modules/Users/populatetemplate.php
+%%WWWDIR%%/modules/Users/updateLeadDBStatus.php
+%%WWWDIR%%/modules/Users/updateNotificationSchedulers.php
+%%WWWDIR%%/modules/Utilities/Calculator.php
+%%WWWDIR%%/modules/Utilities/Clock.php
+%%WWWDIR%%/modules/Utilities/Merge.php
+%%WWWDIR%%/modules/Utilities/UtilitiesAjax.php
+%%WWWDIR%%/modules/Utilities/language/en_us.lang.php
+%%WWWDIR%%/modules/Vendors/CallRelatedList.php
+%%WWWDIR%%/modules/Vendors/CustomView.php
+%%WWWDIR%%/modules/Vendors/Delete.php
+%%WWWDIR%%/modules/Vendors/DetailView.php
+%%WWWDIR%%/modules/Vendors/DetailViewAjax.php
+%%WWWDIR%%/modules/Vendors/EditView.php
+%%WWWDIR%%/modules/Vendors/ListView.php
+%%WWWDIR%%/modules/Vendors/Popup.php
+%%WWWDIR%%/modules/Vendors/QuickCreate.php
+%%WWWDIR%%/modules/Vendors/Save.php
+%%WWWDIR%%/modules/Vendors/TagCloud.php
+%%WWWDIR%%/modules/Vendors/Vendors.js
+%%WWWDIR%%/modules/Vendors/Vendors.php
+%%WWWDIR%%/modules/Vendors/VendorsAjax.php
+%%WWWDIR%%/modules/Vendors/index.php
+%%WWWDIR%%/modules/Vendors/language/en_us.lang.php
+%%WWWDIR%%/modules/Vendors/updateRelations.php
+%%WWWDIR%%/modules/Webmails/CallRelatedList.php
+%%WWWDIR%%/modules/Webmails/DetailView.php
+%%WWWDIR%%/modules/Webmails/Forms.php
+%%WWWDIR%%/modules/Webmails/ListView.php
+%%WWWDIR%%/modules/Webmails/ListViewAjax.php
+%%WWWDIR%%/modules/Webmails/MailBox.php
+%%WWWDIR%%/modules/Webmails/MailParse.php
+%%WWWDIR%%/modules/Webmails/Save.php
+%%WWWDIR%%/modules/Webmails/TODO
+%%WWWDIR%%/modules/Webmails/Webmails.js
+%%WWWDIR%%/modules/Webmails/Webmails.php
+%%WWWDIR%%/modules/Webmails/WebmailsAjax.php
+%%WWWDIR%%/modules/Webmails/body.php
+%%WWWDIR%%/modules/Webmails/conf.php
+%%WWWDIR%%/modules/Webmails/dlAttachments.php
+%%WWWDIR%%/modules/Webmails/download.php
+%%WWWDIR%%/modules/Webmails/functions.php
+%%WWWDIR%%/modules/Webmails/get_img.php
+%%WWWDIR%%/modules/Webmails/images/delitem.png
+%%WWWDIR%%/modules/Webmails/images/down_pointer.png
+%%WWWDIR%%/modules/Webmails/images/draft.png
+%%WWWDIR%%/modules/Webmails/images/end.gif
+%%WWWDIR%%/modules/Webmails/images/flag.png
+%%WWWDIR%%/modules/Webmails/images/folder.png
+%%WWWDIR%%/modules/Webmails/images/gnome-fs-trash-empty.png
+%%WWWDIR%%/modules/Webmails/images/gnome-fs-trash-full.png
+%%WWWDIR%%/modules/Webmails/images/inbox.png
+%%WWWDIR%%/modules/Webmails/images/index.php
+%%WWWDIR%%/modules/Webmails/images/mail_reply.png
+%%WWWDIR%%/modules/Webmails/images/minus.png
+%%WWWDIR%%/modules/Webmails/images/next.gif
+%%WWWDIR%%/modules/Webmails/images/plus.gif
+%%WWWDIR%%/modules/Webmails/images/plus.png
+%%WWWDIR%%/modules/Webmails/images/previous.gif
+%%WWWDIR%%/modules/Webmails/images/sec_remove_eng.png
+%%WWWDIR%%/modules/Webmails/images/senti.png
+%%WWWDIR%%/modules/Webmails/images/sm_logo.png
+%%WWWDIR%%/modules/Webmails/images/sort_none.png
+%%WWWDIR%%/modules/Webmails/images/start.gif
+%%WWWDIR%%/modules/Webmails/images/stock_attach.png
+%%WWWDIR%%/modules/Webmails/images/stock_macro-jump-back.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-flag-for-followup-done.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-flag-for-followup.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-forward.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-hide-read.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-open.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-priority-high.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-read.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-replied.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-reply.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail-unread.png
+%%WWWDIR%%/modules/Webmails/images/stock_mail.png
+%%WWWDIR%%/modules/Webmails/images/stock_trash_full.png
+%%WWWDIR%%/modules/Webmails/images/trashcan_empty.png
+%%WWWDIR%%/modules/Webmails/images/up_pointer.png
+%%WWWDIR%%/modules/Webmails/index.php
+%%WWWDIR%%/modules/Webmails/js/script.js
+%%WWWDIR%%/modules/Webmails/language/en_us.lang.php
+%%WWWDIR%%/modules/Yahoo/images/ym.gif
+%%WWWDIR%%/modules/Yahoo/language/en_us.lang.php
+%%WWWDIR%%/modules/uploads/add2db.php
+%%WWWDIR%%/modules/uploads/deleteattachments.php
+%%WWWDIR%%/modules/uploads/downloadfile.php
+%%WWWDIR%%/modules/uploads/language/en_us.lang.php
+%%WWWDIR%%/modules/uploads/upload.php
+%%WWWDIR%%/modules/uploads/uploadsAjax.php
+%%WWWDIR%%/schema/DatabaseSchema.xml
+%%WWWDIR%%/soap/customerportal.php
+%%WWWDIR%%/soap/firefoxtoolbar.php
+%%WWWDIR%%/soap/thunderbirdplugin.php
+%%WWWDIR%%/soap/vtigerolservice.php
+%%WWWDIR%%/soap/webforms.php
+%%WWWDIR%%/soap/wordplugin.php
+%%WWWDIR%%/storage/vtiger.txt
+%%WWWDIR%%/test/contact/a.txt
+%%WWWDIR%%/test/logo/logo.txt
+%%WWWDIR%%/test/logo/sale.jpeg
+%%WWWDIR%%/test/logo/vtiger-crm-logo.jpg
+%%WWWDIR%%/test/product/product1.jpeg
+%%WWWDIR%%/test/product/product10.jpeg
+%%WWWDIR%%/test/product/product2.jpeg
+%%WWWDIR%%/test/product/product3.jpeg
+%%WWWDIR%%/test/product/product4.jpeg
+%%WWWDIR%%/test/product/product5.jpeg
+%%WWWDIR%%/test/product/product6.jpeg
+%%WWWDIR%%/test/product/product7.jpeg
+%%WWWDIR%%/test/product/product8.jpeg
+%%WWWDIR%%/test/product/product9.jpeg
+%%WWWDIR%%/test/product/vtigercrm.txt
+%%WWWDIR%%/test/upload/vtigercrm.txt
+%%WWWDIR%%/test/user/a.txt
+%%WWWDIR%%/test/wordtemplatedownload/todel.txt
+%%WWWDIR%%/themes/alphagrey/chat.css
+%%WWWDIR%%/themes/alphagrey/footer.php
+%%WWWDIR%%/themes/alphagrey/header.php
+%%WWWDIR%%/themes/alphagrey/images/2tbarPrivateChat.gif
+%%WWWDIR%%/themes/alphagrey/images/2tbarPublicChat.gif
+%%WWWDIR%%/themes/alphagrey/images/3hdrTabBg.gif
+%%WWWDIR%%/themes/alphagrey/images/Accounts.gif
+%%WWWDIR%%/themes/alphagrey/images/AddEvent.gif
+%%WWWDIR%%/themes/alphagrey/images/AddToDo.gif
+%%WWWDIR%%/themes/alphagrey/images/Call.gif
+%%WWWDIR%%/themes/alphagrey/images/Calls.gif
+%%WWWDIR%%/themes/alphagrey/images/Contacts.gif
+%%WWWDIR%%/themes/alphagrey/images/HomeBtm.gif
+%%WWWDIR%%/themes/alphagrey/images/Home_15.gif
+%%WWWDIR%%/themes/alphagrey/images/Leads.gif
+%%WWWDIR%%/themes/alphagrey/images/Meeting.gif
+%%WWWDIR%%/themes/alphagrey/images/Meetings.gif
+%%WWWDIR%%/themes/alphagrey/images/Opportunities.gif
+%%WWWDIR%%/themes/alphagrey/images/Potentials.gif
+%%WWWDIR%%/themes/alphagrey/images/Quotes.gif
+%%WWWDIR%%/themes/alphagrey/images/Recurring.gif
+%%WWWDIR%%/themes/alphagrey/images/Reports_arrow.gif
+%%WWWDIR%%/themes/alphagrey/images/RolesDelete.gif
+%%WWWDIR%%/themes/alphagrey/images/RolesEdit.gif
+%%WWWDIR%%/themes/alphagrey/images/RolesMove.gif
+%%WWWDIR%%/themes/alphagrey/images/Rolesadd.gif
+%%WWWDIR%%/themes/alphagrey/images/Settings.gif
+%%WWWDIR%%/themes/alphagrey/images/Tasks.gif
+%%WWWDIR%%/themes/alphagrey/images/Thumbs.db
+%%WWWDIR%%/themes/alphagrey/images/Tickets.gif
+%%WWWDIR%%/themes/alphagrey/images/TopOpenQuotes.gif
+%%WWWDIR%%/themes/alphagrey/images/ViewTemplate.gif
+%%WWWDIR%%/themes/alphagrey/images/aboutUS.jpg
+%%WWWDIR%%/themes/alphagrey/images/about_btm.jpg
+%%WWWDIR%%/themes/alphagrey/images/actionGenPurchaseOrder.gif
+%%WWWDIR%%/themes/alphagrey/images/actionGenerateInvoice.gif
+%%WWWDIR%%/themes/alphagrey/images/actionGeneratePDF.gif
+%%WWWDIR%%/themes/alphagrey/images/actionGenerateQuote.gif
+%%WWWDIR%%/themes/alphagrey/images/actionGenerateSalesOrder.gif
+%%WWWDIR%%/themes/alphagrey/images/actionPrintNow.gif
+%%WWWDIR%%/themes/alphagrey/images/addrss.gif
+%%WWWDIR%%/themes/alphagrey/images/advancedSearchLens.gif
+%%WWWDIR%%/themes/alphagrey/images/alphagrayHomeMark.gif
+%%WWWDIR%%/themes/alphagrey/images/announ.gif
+%%WWWDIR%%/themes/alphagrey/images/arrow.jpg
+%%WWWDIR%%/themes/alphagrey/images/arrow_down.gif
+%%WWWDIR%%/themes/alphagrey/images/arrow_up.gif
+%%WWWDIR%%/themes/alphagrey/images/assign.gif
+%%WWWDIR%%/themes/alphagrey/images/attachment.gif
+%%WWWDIR%%/themes/alphagrey/images/audit.gif
+%%WWWDIR%%/themes/alphagrey/images/backupserver.gif
+%%WWWDIR%%/themes/alphagrey/images/basicSearchLens.gif
+%%WWWDIR%%/themes/alphagrey/images/bl_bar.jpg
+%%WWWDIR%%/themes/alphagrey/images/black.png
+%%WWWDIR%%/themes/alphagrey/images/blank.gif
+%%WWWDIR%%/themes/alphagrey/images/bookMark.gif
+%%WWWDIR%%/themes/alphagrey/images/bottom_left.jpg
+%%WWWDIR%%/themes/alphagrey/images/bottom_right.jpg
+%%WWWDIR%%/themes/alphagrey/images/box_BL.gif
+%%WWWDIR%%/themes/alphagrey/images/box_BR.gif
+%%WWWDIR%%/themes/alphagrey/images/box_M.gif
+%%WWWDIR%%/themes/alphagrey/images/box_ML.gif
+%%WWWDIR%%/themes/alphagrey/images/box_MR.gif
+%%WWWDIR%%/themes/alphagrey/images/box_T.gif
+%%WWWDIR%%/themes/alphagrey/images/box_TL.gif
+%%WWWDIR%%/themes/alphagrey/images/box_TR.gif
+%%WWWDIR%%/themes/alphagrey/images/btnAlexa.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Add-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Add.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3AllMenu-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3AllMenu.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Calc-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Calc.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Calendar-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Calendar.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Clock-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Clock.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Search-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Search.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Tracker-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/btnL3Tracker.gif
+%%WWWDIR%%/themes/alphagrey/images/btn_close.gif
+%%WWWDIR%%/themes/alphagrey/images/btn_hide.gif
+%%WWWDIR%%/themes/alphagrey/images/btn_send.gif
+%%WWWDIR%%/themes/alphagrey/images/busy.gif
+%%WWWDIR%%/themes/alphagrey/images/bx_B.gif
+%%WWWDIR%%/themes/alphagrey/images/cal12x12Shared.gif
+%%WWWDIR%%/themes/alphagrey/images/cal16x16Call.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal16x16CallAdd.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal16x16Linked.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal16x16Meeting.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal16x16MeetingAdd.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal16x16Shared.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal16x16ToDo.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal16x16ToDoAdd.jpg
+%%WWWDIR%%/themes/alphagrey/images/calAddButtonBg.gif
+%%WWWDIR%%/themes/alphagrey/images/calBg.gif
+%%WWWDIR%%/themes/alphagrey/images/calBottomBg.gif
+%%WWWDIR%%/themes/alphagrey/images/calBottomLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/calBottomRight.gif
+%%WWWDIR%%/themes/alphagrey/images/calNavNext.gif
+%%WWWDIR%%/themes/alphagrey/images/calNavPrev.gif
+%%WWWDIR%%/themes/alphagrey/images/calSep.gif
+%%WWWDIR%%/themes/alphagrey/images/calTopLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/calTopRight.gif
+%%WWWDIR%%/themes/alphagrey/images/cal_Hdr.gif
+%%WWWDIR%%/themes/alphagrey/images/cal_Others.gif
+%%WWWDIR%%/themes/alphagrey/images/cal_add.gif
+%%WWWDIR%%/themes/alphagrey/images/cal_add.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal_clock.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal_event.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal_hdr.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal_nav.gif
+%%WWWDIR%%/themes/alphagrey/images/cal_next_nav.gif
+%%WWWDIR%%/themes/alphagrey/images/cal_prev_nav.gif
+%%WWWDIR%%/themes/alphagrey/images/cal_sel.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal_sharing.jpg
+%%WWWDIR%%/themes/alphagrey/images/cal_title.jpg
+%%WWWDIR%%/themes/alphagrey/images/calc_back_btn.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_black_btn.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_blue_btn.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_bottom_center.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_bottom_left.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_bottom_right.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_canc_btn.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_grey_btn.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_logo.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_mem_btn.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_middle_right.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_red_btn.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_res_bc.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_res_bl.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_res_br.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_res_ml.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_res_mr.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_res_tc.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_res_tl.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_res_tr.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_top_left.gif
+%%WWWDIR%%/themes/alphagrey/images/calc_top_right.gif
+%%WWWDIR%%/themes/alphagrey/images/calendar.gif
+%%WWWDIR%%/themes/alphagrey/images/cfcurrency.gif
+%%WWWDIR%%/themes/alphagrey/images/cfpicklist.gif
+%%WWWDIR%%/themes/alphagrey/images/check_mail.gif
+%%WWWDIR%%/themes/alphagrey/images/checkbox.gif
+%%WWWDIR%%/themes/alphagrey/images/clear_field.gif
+%%WWWDIR%%/themes/alphagrey/images/clock_bg.gif
+%%WWWDIR%%/themes/alphagrey/images/close.gif
+%%WWWDIR%%/themes/alphagrey/images/collapse.gif
+%%WWWDIR%%/themes/alphagrey/images/company.gif
+%%WWWDIR%%/themes/alphagrey/images/compose.gif
+%%WWWDIR%%/themes/alphagrey/images/composeMail.jpg
+%%WWWDIR%%/themes/alphagrey/images/currency.gif
+%%WWWDIR%%/themes/alphagrey/images/currencydelete.gif
+%%WWWDIR%%/themes/alphagrey/images/custom.gif
+%%WWWDIR%%/themes/alphagrey/images/dashBottomBg.gif
+%%WWWDIR%%/themes/alphagrey/images/dashSelectBg.gif
+%%WWWDIR%%/themes/alphagrey/images/dashTopBg.gif
+%%WWWDIR%%/themes/alphagrey/images/dash_btm.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_btm_center.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_btm_left.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_btm_right.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_down_arrow.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_name.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_screw.gif
+%%WWWDIR%%/themes/alphagrey/images/dash_screw.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_scroll_up.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_sel_btm.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_sel_chart.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_sel_left.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_sel_top.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_switch_view.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_top.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_top_shadow.jpg
+%%WWWDIR%%/themes/alphagrey/images/dash_unsel_chart.jpg
+%%WWWDIR%%/themes/alphagrey/images/date.gif
+%%WWWDIR%%/themes/alphagrey/images/dboardMatrixView.gif
+%%WWWDIR%%/themes/alphagrey/images/dboardNormalView.gif
+%%WWWDIR%%/themes/alphagrey/images/del.gif
+%%WWWDIR%%/themes/alphagrey/images/del_tag.gif
+%%WWWDIR%%/themes/alphagrey/images/delete.gif
+%%WWWDIR%%/themes/alphagrey/images/denied.gif
+%%WWWDIR%%/themes/alphagrey/images/disabled.gif
+%%WWWDIR%%/themes/alphagrey/images/editfield.gif
+%%WWWDIR%%/themes/alphagrey/images/email.gif
+%%WWWDIR%%/themes/alphagrey/images/emailDelete.gif
+%%WWWDIR%%/themes/alphagrey/images/emailInFolder.gif
+%%WWWDIR%%/themes/alphagrey/images/emailOutFolder.gif
+%%WWWDIR%%/themes/alphagrey/images/emailTrashFolder.gif
+%%WWWDIR%%/themes/alphagrey/images/empty.jpg
+%%WWWDIR%%/themes/alphagrey/images/enabled.gif
+%%WWWDIR%%/themes/alphagrey/images/end.gif
+%%WWWDIR%%/themes/alphagrey/images/end_disabled.gif
+%%WWWDIR%%/themes/alphagrey/images/expand.gif
+%%WWWDIR%%/themes/alphagrey/images/free.gif
+%%WWWDIR%%/themes/alphagrey/images/hdrNameBg.gif
+%%WWWDIR%%/themes/alphagrey/images/hdrTabBg.gif
+%%WWWDIR%%/themes/alphagrey/images/head_end.gif
+%%WWWDIR%%/themes/alphagrey/images/head_start.gif
+%%WWWDIR%%/themes/alphagrey/images/help.gif
+%%WWWDIR%%/themes/alphagrey/images/help_icon.gif
+%%WWWDIR%%/themes/alphagrey/images/hometop.gif
+%%WWWDIR%%/themes/alphagrey/images/ico-groups.gif
+%%WWWDIR%%/themes/alphagrey/images/ico-profile.gif
+%%WWWDIR%%/themes/alphagrey/images/ico-roles.gif
+%%WWWDIR%%/themes/alphagrey/images/ico-users.gif
+%%WWWDIR%%/themes/alphagrey/images/inventory.gif
+%%WWWDIR%%/themes/alphagrey/images/jump.gif
+%%WWWDIR%%/themes/alphagrey/images/keyMetrics.gif
+%%WWWDIR%%/themes/alphagrey/images/layerPopupBg.gif
+%%WWWDIR%%/themes/alphagrey/images/left.gif
+%%WWWDIR%%/themes/alphagrey/images/left_arc.gif
+%%WWWDIR%%/themes/alphagrey/images/level2TabBg.gif
+%%WWWDIR%%/themes/alphagrey/images/loginBg.gif
+%%WWWDIR%%/themes/alphagrey/images/loginBottomBg.gif
+%%WWWDIR%%/themes/alphagrey/images/loginBottomURL.gif
+%%WWWDIR%%/themes/alphagrey/images/loginSIBottomLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/loginSIBottomRight.gif
+%%WWWDIR%%/themes/alphagrey/images/loginSITopLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/loginSITopRight.gif
+%%WWWDIR%%/themes/alphagrey/images/loginTopShade.gif
+%%WWWDIR%%/themes/alphagrey/images/logout.gif
+%%WWWDIR%%/themes/alphagrey/images/lvtNavBtnFirst.gif
+%%WWWDIR%%/themes/alphagrey/images/lvtNavBtnLast.gif
+%%WWWDIR%%/themes/alphagrey/images/lvtNavBtnNext.gif
+%%WWWDIR%%/themes/alphagrey/images/lvtNavBtnPrev.gif
+%%WWWDIR%%/themes/alphagrey/images/mailHdr.jpg
+%%WWWDIR%%/themes/alphagrey/images/mailSubHeaderBg.gif
+%%WWWDIR%%/themes/alphagrey/images/mailTitle.jpg
+%%WWWDIR%%/themes/alphagrey/images/mailmarge.gif
+%%WWWDIR%%/themes/alphagrey/images/menuDnArrow.gif
+%%WWWDIR%%/themes/alphagrey/images/menu_off_end.gif
+%%WWWDIR%%/themes/alphagrey/images/menu_off_start.gif
+%%WWWDIR%%/themes/alphagrey/images/menu_off_tile.gif
+%%WWWDIR%%/themes/alphagrey/images/menu_on_end.gif
+%%WWWDIR%%/themes/alphagrey/images/menu_on_start.gif
+%%WWWDIR%%/themes/alphagrey/images/menu_on_tile.gif
+%%WWWDIR%%/themes/alphagrey/images/menu_root.gif
+%%WWWDIR%%/themes/alphagrey/images/migrate.gif
+%%WWWDIR%%/themes/alphagrey/images/migration_sucess.jpg
+%%WWWDIR%%/themes/alphagrey/images/minus.gif
+%%WWWDIR%%/themes/alphagrey/images/moduleSelectorBg.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_del.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_del_down.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_del_over.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_down.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_down_disabled.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_down_down.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_down_over.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_up.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_up_disabled.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_up_down.gif
+%%WWWDIR%%/themes/alphagrey/images/movecol_up_over.gif
+%%WWWDIR%%/themes/alphagrey/images/myGroupAllocation.gif
+%%WWWDIR%%/themes/alphagrey/images/myTickets.gif
+%%WWWDIR%%/themes/alphagrey/images/myTopAccounts.gif
+%%WWWDIR%%/themes/alphagrey/images/myTopInvoices.gif
+%%WWWDIR%%/themes/alphagrey/images/myTopOpenPotentials.gif
+%%WWWDIR%%/themes/alphagrey/images/myTopSalesOrders.gif
+%%WWWDIR%%/themes/alphagrey/images/myUpcoPendAct.gif
+%%WWWDIR%%/themes/alphagrey/images/next.gif
+%%WWWDIR%%/themes/alphagrey/images/nextRecord.gif
+%%WWWDIR%%/themes/alphagrey/images/next_disabled.gif
+%%WWWDIR%%/themes/alphagrey/images/no.gif
+%%WWWDIR%%/themes/alphagrey/images/notification.gif
+%%WWWDIR%%/themes/alphagrey/images/number.gif
+%%WWWDIR%%/themes/alphagrey/images/offstar.gif
+%%WWWDIR%%/themes/alphagrey/images/ogmailserver.gif
+%%WWWDIR%%/themes/alphagrey/images/one.gif
+%%WWWDIR%%/themes/alphagrey/images/onstar.gif
+%%WWWDIR%%/themes/alphagrey/images/orgshar.gif
+%%WWWDIR%%/themes/alphagrey/images/pendingEvents.gif
+%%WWWDIR%%/themes/alphagrey/images/pending_left.gif
+%%WWWDIR%%/themes/alphagrey/images/pending_right.gif
+%%WWWDIR%%/themes/alphagrey/images/percent.gif
+%%WWWDIR%%/themes/alphagrey/images/phone.gif
+%%WWWDIR%%/themes/alphagrey/images/picklist.gif
+%%WWWDIR%%/themes/alphagrey/images/picklistEditor.gif
+%%WWWDIR%%/themes/alphagrey/images/picklist_hint.gif
+%%WWWDIR%%/themes/alphagrey/images/plsWaitAnimated.gif
+%%WWWDIR%%/themes/alphagrey/images/plus.gif
+%%WWWDIR%%/themes/alphagrey/images/pointer.gif
+%%WWWDIR%%/themes/alphagrey/images/popupHdr.jpg
+%%WWWDIR%%/themes/alphagrey/images/previous.gif
+%%WWWDIR%%/themes/alphagrey/images/previousRecord.gif
+%%WWWDIR%%/themes/alphagrey/images/previous_disabled.gif
+%%WWWDIR%%/themes/alphagrey/images/pricebook.gif
+%%WWWDIR%%/themes/alphagrey/images/primeTopBg.gif
+%%WWWDIR%%/themes/alphagrey/images/print.gif
+%%WWWDIR%%/themes/alphagrey/images/private.gif
+%%WWWDIR%%/themes/alphagrey/images/proxy.gif
+%%WWWDIR%%/themes/alphagrey/images/prvPrfBottomLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/prvPrfBottomRight.gif
+%%WWWDIR%%/themes/alphagrey/images/prvPrfHdrArrow.gif
+%%WWWDIR%%/themes/alphagrey/images/prvPrfSelectedTick.gif
+%%WWWDIR%%/themes/alphagrey/images/prvPrfTopLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/prvPrfTopRight.gif
+%%WWWDIR%%/themes/alphagrey/images/public.gif
+%%WWWDIR%%/themes/alphagrey/images/qcBg.gif
+%%WWWDIR%%/themes/alphagrey/images/qcName.gif
+%%WWWDIR%%/themes/alphagrey/images/reload.gif
+%%WWWDIR%%/themes/alphagrey/images/report_bg.gif
+%%WWWDIR%%/themes/alphagrey/images/report_bottom.gif
+%%WWWDIR%%/themes/alphagrey/images/report_btn.gif
+%%WWWDIR%%/themes/alphagrey/images/report_newHdr.gif
+%%WWWDIR%%/themes/alphagrey/images/reportsCreate.gif
+%%WWWDIR%%/themes/alphagrey/images/reportsDelete.gif
+%%WWWDIR%%/themes/alphagrey/images/reportsFolderCreate.gif
+%%WWWDIR%%/themes/alphagrey/images/reportsMove.gif
+%%WWWDIR%%/themes/alphagrey/images/right.gif
+%%WWWDIR%%/themes/alphagrey/images/right_arc.gif
+%%WWWDIR%%/themes/alphagrey/images/rss.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplayBg.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplayBottom.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplayBottomLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplayBottomRight.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplayLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplayRight.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplaySpeaker.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplayTop.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplayTopLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/rssDisplayTopRight.gif
+%%WWWDIR%%/themes/alphagrey/images/rssHeader.gif
+%%WWWDIR%%/themes/alphagrey/images/rssOnHeader.gif
+%%WWWDIR%%/themes/alphagrey/images/rssdelete.gif
+%%WWWDIR%%/themes/alphagrey/images/rssforward.gif
+%%WWWDIR%%/themes/alphagrey/images/rssframeHdr.gif
+%%WWWDIR%%/themes/alphagrey/images/rssimage.gif
+%%WWWDIR%%/themes/alphagrey/images/rssroot.gif
+%%WWWDIR%%/themes/alphagrey/images/scroll_left.gif
+%%WWWDIR%%/themes/alphagrey/images/scroll_left_down.gif
+%%WWWDIR%%/themes/alphagrey/images/scroll_right.gif
+%%WWWDIR%%/themes/alphagrey/images/scroll_right_down.gif
+%%WWWDIR%%/themes/alphagrey/images/search.gif
+%%WWWDIR%%/themes/alphagrey/images/searchUIBg.gif
+%%WWWDIR%%/themes/alphagrey/images/searching.gif
+%%WWWDIR%%/themes/alphagrey/images/select.gif
+%%WWWDIR%%/themes/alphagrey/images/set-IcoLoginHistory.gif
+%%WWWDIR%%/themes/alphagrey/images/set-IcoTwoTabConfig.gif
+%%WWWDIR%%/themes/alphagrey/images/settingsActBtnDelete.gif
+%%WWWDIR%%/themes/alphagrey/images/settingsActBtnDuplicate.gif
+%%WWWDIR%%/themes/alphagrey/images/settingsActBtnEdit.gif
+%%WWWDIR%%/themes/alphagrey/images/settingsInvNumber.gif
+%%WWWDIR%%/themes/alphagrey/images/settingsMTBg.gif
+%%WWWDIR%%/themes/alphagrey/images/settingsSelUIBg.gif
+%%WWWDIR%%/themes/alphagrey/images/settings_top.gif
+%%WWWDIR%%/themes/alphagrey/images/shareaccess.gif
+%%WWWDIR%%/themes/alphagrey/images/showDown.gif
+%%WWWDIR%%/themes/alphagrey/images/showPanelTopBg.gif
+%%WWWDIR%%/themes/alphagrey/images/showPanelTopLeft.gif
+%%WWWDIR%%/themes/alphagrey/images/showPanelTopRight.gif
+%%WWWDIR%%/themes/alphagrey/images/showsubmenu.gif
+%%WWWDIR%%/themes/alphagrey/images/site_bg.gif
+%%WWWDIR%%/themes/alphagrey/images/site_hdr.jpg
+%%WWWDIR%%/themes/alphagrey/images/site_sel.jpg
+%%WWWDIR%%/themes/alphagrey/images/site_unsel.jpg
+%%WWWDIR%%/themes/alphagrey/images/skype.gif
+%%WWWDIR%%/themes/alphagrey/images/small_left.gif
+%%WWWDIR%%/themes/alphagrey/images/small_right.gif
+%%WWWDIR%%/themes/alphagrey/images/spacer.gif
+%%WWWDIR%%/themes/alphagrey/images/start.gif
+%%WWWDIR%%/themes/alphagrey/images/start_disabled.gif
+%%WWWDIR%%/themes/alphagrey/images/status.gif
+%%WWWDIR%%/themes/alphagrey/images/strikeline.gif
+%%WWWDIR%%/themes/alphagrey/images/summarize.gif
+%%WWWDIR%%/themes/alphagrey/images/system.gif
+%%WWWDIR%%/themes/alphagrey/images/tabRht.gif
+%%WWWDIR%%/themes/alphagrey/images/tabSelectedBg.gif
+%%WWWDIR%%/themes/alphagrey/images/tabSeperatorBg.gif
+%%WWWDIR%%/themes/alphagrey/images/tabUnSelectedBg.gif
+%%WWWDIR%%/themes/alphagrey/images/tabular.gif
+%%WWWDIR%%/themes/alphagrey/images/tagCloudBg.gif
+%%WWWDIR%%/themes/alphagrey/images/tagCloudName.gif
+%%WWWDIR%%/themes/alphagrey/images/tagcloud_03.gif
+%%WWWDIR%%/themes/alphagrey/images/taxConfiguration.gif
+%%WWWDIR%%/themes/alphagrey/images/tbarChat-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/tbarChat.gif
+%%WWWDIR%%/themes/alphagrey/images/tbarExport-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/tbarExport.gif
+%%WWWDIR%%/themes/alphagrey/images/tbarImport-Faded.gif
+%%WWWDIR%%/themes/alphagrey/images/tbarImport.gif
+%%WWWDIR%%/themes/alphagrey/images/tbarPrivateChat.gif
+%%WWWDIR%%/themes/alphagrey/images/tbarPublicChat.gif
+%%WWWDIR%%/themes/alphagrey/images/tbarSettings.gif
+%%WWWDIR%%/themes/alphagrey/images/tblPro1BtnHide.gif
+%%WWWDIR%%/themes/alphagrey/images/tblPro1ColBg.gif
+%%WWWDIR%%/themes/alphagrey/images/terms.gif
+%%WWWDIR%%/themes/alphagrey/images/text.gif
+%%WWWDIR%%/themes/alphagrey/images/titleMailClient.gif
+%%WWWDIR%%/themes/alphagrey/images/titleMySites.gif
+%%WWWDIR%%/themes/alphagrey/images/titleRSSReader.gif
+%%WWWDIR%%/themes/alphagrey/images/todaybg.gif
+%%WWWDIR%%/themes/alphagrey/images/topBg.gif
+%%WWWDIR%%/themes/alphagrey/images/topBnr.gif
+%%WWWDIR%%/themes/alphagrey/images/top_left.jpg
+%%WWWDIR%%/themes/alphagrey/images/top_right.jpg
+%%WWWDIR%%/themes/alphagrey/images/topbar.gif
+%%WWWDIR%%/themes/alphagrey/images/topcut.gif
+%%WWWDIR%%/themes/alphagrey/images/up.gif
+%%WWWDIR%%/themes/alphagrey/images/uparrow.gif
+%%WWWDIR%%/themes/alphagrey/images/upcomingEvents.gif
+%%WWWDIR%%/themes/alphagrey/images/upcoming_left.gif
+%%WWWDIR%%/themes/alphagrey/images/upcoming_right.gif
+%%WWWDIR%%/themes/alphagrey/images/url.gif
+%%WWWDIR%%/themes/alphagrey/images/user_icon.gif
+%%WWWDIR%%/themes/alphagrey/images/vtbusy.gif
+%%WWWDIR%%/themes/alphagrey/images/vtiger-crm.gif
+%%WWWDIR%%/themes/alphagrey/images/vtiger.jpg
+%%WWWDIR%%/themes/alphagrey/images/vtigerDevDocs.gif
+%%WWWDIR%%/themes/alphagrey/images/webmail_downarrow.gif
+%%WWWDIR%%/themes/alphagrey/images/webmail_header.gif
+%%WWWDIR%%/themes/alphagrey/images/webmail_root.gif
+%%WWWDIR%%/themes/alphagrey/images/webmail_settings.gif
+%%WWWDIR%%/themes/alphagrey/images/webmail_trash.gif
+%%WWWDIR%%/themes/alphagrey/images/webmail_uparrow.gif
+%%WWWDIR%%/themes/alphagrey/images/windowmarkModule.jpg
+%%WWWDIR%%/themes/alphagrey/images/yes.gif
+%%WWWDIR%%/themes/alphagrey/layout_utils.php
+%%WWWDIR%%/themes/alphagrey/loginheader.html
+%%WWWDIR%%/themes/alphagrey/loginheader.php
+%%WWWDIR%%/themes/alphagrey/style.css
+%%WWWDIR%%/themes/alphagrey/webmail.css
+%%WWWDIR%%/themes/bluelagoon/chat.css
+%%WWWDIR%%/themes/bluelagoon/footer.php
+%%WWWDIR%%/themes/bluelagoon/header.php
+%%WWWDIR%%/themes/bluelagoon/images/2tbarPrivateChat.gif
+%%WWWDIR%%/themes/bluelagoon/images/2tbarPublicChat.gif
+%%WWWDIR%%/themes/bluelagoon/images/3hdrTabBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/Accounts.gif
+%%WWWDIR%%/themes/bluelagoon/images/AddEvent.gif
+%%WWWDIR%%/themes/bluelagoon/images/AddToDo.gif
+%%WWWDIR%%/themes/bluelagoon/images/Call.gif
+%%WWWDIR%%/themes/bluelagoon/images/Calls.gif
+%%WWWDIR%%/themes/bluelagoon/images/Contacts.gif
+%%WWWDIR%%/themes/bluelagoon/images/HomeBtm.gif
+%%WWWDIR%%/themes/bluelagoon/images/Home_15.gif
+%%WWWDIR%%/themes/bluelagoon/images/Leads.gif
+%%WWWDIR%%/themes/bluelagoon/images/Meeting.gif
+%%WWWDIR%%/themes/bluelagoon/images/Meetings.gif
+%%WWWDIR%%/themes/bluelagoon/images/Opportunities.gif
+%%WWWDIR%%/themes/bluelagoon/images/Potentials.gif
+%%WWWDIR%%/themes/bluelagoon/images/Quotes.gif
+%%WWWDIR%%/themes/bluelagoon/images/Recurring.gif
+%%WWWDIR%%/themes/bluelagoon/images/Reports_arrow.gif
+%%WWWDIR%%/themes/bluelagoon/images/RolesDelete.gif
+%%WWWDIR%%/themes/bluelagoon/images/RolesEdit.gif
+%%WWWDIR%%/themes/bluelagoon/images/RolesMove.gif
+%%WWWDIR%%/themes/bluelagoon/images/Rolesadd.gif
+%%WWWDIR%%/themes/bluelagoon/images/Settings.gif
+%%WWWDIR%%/themes/bluelagoon/images/Tasks.gif
+%%WWWDIR%%/themes/bluelagoon/images/Thumbs.db
+%%WWWDIR%%/themes/bluelagoon/images/Tickets.gif
+%%WWWDIR%%/themes/bluelagoon/images/TopOpenQuotes.gif
+%%WWWDIR%%/themes/bluelagoon/images/ViewTemplate.gif
+%%WWWDIR%%/themes/bluelagoon/images/aboutUS.jpg
+%%WWWDIR%%/themes/bluelagoon/images/about_btm.jpg
+%%WWWDIR%%/themes/bluelagoon/images/actionGenPurchaseOrder.gif
+%%WWWDIR%%/themes/bluelagoon/images/actionGenerateInvoice.gif
+%%WWWDIR%%/themes/bluelagoon/images/actionGeneratePDF.gif
+%%WWWDIR%%/themes/bluelagoon/images/actionGenerateQuote.gif
+%%WWWDIR%%/themes/bluelagoon/images/actionGenerateSalesOrder.gif
+%%WWWDIR%%/themes/bluelagoon/images/actionPrintNow.gif
+%%WWWDIR%%/themes/bluelagoon/images/addrss.gif
+%%WWWDIR%%/themes/bluelagoon/images/advancedSearchLens.gif
+%%WWWDIR%%/themes/bluelagoon/images/announ.gif
+%%WWWDIR%%/themes/bluelagoon/images/arrow.jpg
+%%WWWDIR%%/themes/bluelagoon/images/arrow_down.gif
+%%WWWDIR%%/themes/bluelagoon/images/arrow_up.gif
+%%WWWDIR%%/themes/bluelagoon/images/assign.gif
+%%WWWDIR%%/themes/bluelagoon/images/attachment.gif
+%%WWWDIR%%/themes/bluelagoon/images/audit.gif
+%%WWWDIR%%/themes/bluelagoon/images/backupserver.gif
+%%WWWDIR%%/themes/bluelagoon/images/basicSearchLens.gif
+%%WWWDIR%%/themes/bluelagoon/images/bl_bar.jpg
+%%WWWDIR%%/themes/bluelagoon/images/black.png
+%%WWWDIR%%/themes/bluelagoon/images/blank.gif
+%%WWWDIR%%/themes/bluelagoon/images/blueLagoonHomeMark.gif
+%%WWWDIR%%/themes/bluelagoon/images/bookMark.gif
+%%WWWDIR%%/themes/bluelagoon/images/bottom_left.jpg
+%%WWWDIR%%/themes/bluelagoon/images/bottom_right.jpg
+%%WWWDIR%%/themes/bluelagoon/images/box_BL.gif
+%%WWWDIR%%/themes/bluelagoon/images/box_BR.gif
+%%WWWDIR%%/themes/bluelagoon/images/box_M.gif
+%%WWWDIR%%/themes/bluelagoon/images/box_ML.gif
+%%WWWDIR%%/themes/bluelagoon/images/box_MR.gif
+%%WWWDIR%%/themes/bluelagoon/images/box_T.gif
+%%WWWDIR%%/themes/bluelagoon/images/box_TL.gif
+%%WWWDIR%%/themes/bluelagoon/images/box_TR.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnAlexa.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Add-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Add.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3AllMenu-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3AllMenu.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Calc-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Calc.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Calendar-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Calendar.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Clock-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Clock.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Search-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Search.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Tracker-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/btnL3Tracker.gif
+%%WWWDIR%%/themes/bluelagoon/images/btn_close.gif
+%%WWWDIR%%/themes/bluelagoon/images/btn_hide.gif
+%%WWWDIR%%/themes/bluelagoon/images/btn_send.gif
+%%WWWDIR%%/themes/bluelagoon/images/busy.gif
+%%WWWDIR%%/themes/bluelagoon/images/bx_B.gif
+%%WWWDIR%%/themes/bluelagoon/images/cal12x12Shared.gif
+%%WWWDIR%%/themes/bluelagoon/images/cal16x16Call.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal16x16CallAdd.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal16x16Linked.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal16x16Meeting.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal16x16MeetingAdd.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal16x16Shared.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal16x16ToDo.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal16x16ToDoAdd.jpg
+%%WWWDIR%%/themes/bluelagoon/images/calAddButtonBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/calBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/calBottomBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/calBottomLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/calBottomRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/calNavNext.gif
+%%WWWDIR%%/themes/bluelagoon/images/calNavPrev.gif
+%%WWWDIR%%/themes/bluelagoon/images/calSep.gif
+%%WWWDIR%%/themes/bluelagoon/images/calTopLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/calTopRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/cal_Hdr.gif
+%%WWWDIR%%/themes/bluelagoon/images/cal_Others.gif
+%%WWWDIR%%/themes/bluelagoon/images/cal_add.gif
+%%WWWDIR%%/themes/bluelagoon/images/cal_add.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal_clock.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal_event.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal_hdr.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal_nav.gif
+%%WWWDIR%%/themes/bluelagoon/images/cal_next_nav.gif
+%%WWWDIR%%/themes/bluelagoon/images/cal_prev_nav.gif
+%%WWWDIR%%/themes/bluelagoon/images/cal_sel.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal_sharing.jpg
+%%WWWDIR%%/themes/bluelagoon/images/cal_title.jpg
+%%WWWDIR%%/themes/bluelagoon/images/calc_back_btn.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_black_btn.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_blue_btn.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_bottom_center.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_bottom_left.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_bottom_right.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_canc_btn.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_grey_btn.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_logo.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_mem_btn.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_middle_right.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_red_btn.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_res_bc.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_res_bl.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_res_br.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_res_ml.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_res_mr.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_res_tc.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_res_tl.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_res_tr.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_top_left.gif
+%%WWWDIR%%/themes/bluelagoon/images/calc_top_right.gif
+%%WWWDIR%%/themes/bluelagoon/images/calendar.gif
+%%WWWDIR%%/themes/bluelagoon/images/cfcurrency.gif
+%%WWWDIR%%/themes/bluelagoon/images/cfpicklist.gif
+%%WWWDIR%%/themes/bluelagoon/images/check_mail.gif
+%%WWWDIR%%/themes/bluelagoon/images/checkbox.gif
+%%WWWDIR%%/themes/bluelagoon/images/clear_field.gif
+%%WWWDIR%%/themes/bluelagoon/images/clock_bg.gif
+%%WWWDIR%%/themes/bluelagoon/images/close.gif
+%%WWWDIR%%/themes/bluelagoon/images/collapse.gif
+%%WWWDIR%%/themes/bluelagoon/images/company.gif
+%%WWWDIR%%/themes/bluelagoon/images/compose.gif
+%%WWWDIR%%/themes/bluelagoon/images/composeMail.jpg
+%%WWWDIR%%/themes/bluelagoon/images/currency.gif
+%%WWWDIR%%/themes/bluelagoon/images/currencydelete.gif
+%%WWWDIR%%/themes/bluelagoon/images/custom.gif
+%%WWWDIR%%/themes/bluelagoon/images/dashBottomBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/dashSelectBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/dashTopBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/dash_btm.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_btm_center.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_btm_left.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_btm_right.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_down_arrow.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_name.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_screw.gif
+%%WWWDIR%%/themes/bluelagoon/images/dash_screw.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_scroll_up.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_sel_btm.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_sel_chart.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_sel_left.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_sel_top.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_switch_view.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_top.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_top_shadow.jpg
+%%WWWDIR%%/themes/bluelagoon/images/dash_unsel_chart.jpg
+%%WWWDIR%%/themes/bluelagoon/images/date.gif
+%%WWWDIR%%/themes/bluelagoon/images/dboardMatrixView.gif
+%%WWWDIR%%/themes/bluelagoon/images/dboardNormalView.gif
+%%WWWDIR%%/themes/bluelagoon/images/del.gif
+%%WWWDIR%%/themes/bluelagoon/images/del_tag.gif
+%%WWWDIR%%/themes/bluelagoon/images/delete.gif
+%%WWWDIR%%/themes/bluelagoon/images/denied.gif
+%%WWWDIR%%/themes/bluelagoon/images/disabled.gif
+%%WWWDIR%%/themes/bluelagoon/images/editfield.gif
+%%WWWDIR%%/themes/bluelagoon/images/email.gif
+%%WWWDIR%%/themes/bluelagoon/images/emailDelete.gif
+%%WWWDIR%%/themes/bluelagoon/images/emailInFolder.gif
+%%WWWDIR%%/themes/bluelagoon/images/emailOutFolder.gif
+%%WWWDIR%%/themes/bluelagoon/images/emailTrashFolder.gif
+%%WWWDIR%%/themes/bluelagoon/images/empty.jpg
+%%WWWDIR%%/themes/bluelagoon/images/enabled.gif
+%%WWWDIR%%/themes/bluelagoon/images/end.gif
+%%WWWDIR%%/themes/bluelagoon/images/end_disabled.gif
+%%WWWDIR%%/themes/bluelagoon/images/expand.gif
+%%WWWDIR%%/themes/bluelagoon/images/free.gif
+%%WWWDIR%%/themes/bluelagoon/images/hdrNameBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/hdrTabBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/head_end.gif
+%%WWWDIR%%/themes/bluelagoon/images/head_start.gif
+%%WWWDIR%%/themes/bluelagoon/images/help.gif
+%%WWWDIR%%/themes/bluelagoon/images/help_icon.gif
+%%WWWDIR%%/themes/bluelagoon/images/hometop.gif
+%%WWWDIR%%/themes/bluelagoon/images/ico-groups.gif
+%%WWWDIR%%/themes/bluelagoon/images/ico-profile.gif
+%%WWWDIR%%/themes/bluelagoon/images/ico-roles.gif
+%%WWWDIR%%/themes/bluelagoon/images/ico-users.gif
+%%WWWDIR%%/themes/bluelagoon/images/inventory.gif
+%%WWWDIR%%/themes/bluelagoon/images/jump.gif
+%%WWWDIR%%/themes/bluelagoon/images/keyMetrics.gif
+%%WWWDIR%%/themes/bluelagoon/images/layerPopupBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/left.gif
+%%WWWDIR%%/themes/bluelagoon/images/left_arc.gif
+%%WWWDIR%%/themes/bluelagoon/images/level2TabBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/loginBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/loginBottomBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/loginBottomURL.gif
+%%WWWDIR%%/themes/bluelagoon/images/loginSIBottomLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/loginSIBottomRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/loginSITopLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/loginSITopRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/loginTopShade.gif
+%%WWWDIR%%/themes/bluelagoon/images/logout.gif
+%%WWWDIR%%/themes/bluelagoon/images/lvtNavBtnFirst.gif
+%%WWWDIR%%/themes/bluelagoon/images/lvtNavBtnLast.gif
+%%WWWDIR%%/themes/bluelagoon/images/lvtNavBtnNext.gif
+%%WWWDIR%%/themes/bluelagoon/images/lvtNavBtnPrev.gif
+%%WWWDIR%%/themes/bluelagoon/images/mailHdr.jpg
+%%WWWDIR%%/themes/bluelagoon/images/mailSubHeaderBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/mailTitle.jpg
+%%WWWDIR%%/themes/bluelagoon/images/mailmarge.gif
+%%WWWDIR%%/themes/bluelagoon/images/menuDnArrow.gif
+%%WWWDIR%%/themes/bluelagoon/images/menu_off_end.gif
+%%WWWDIR%%/themes/bluelagoon/images/menu_off_start.gif
+%%WWWDIR%%/themes/bluelagoon/images/menu_off_tile.gif
+%%WWWDIR%%/themes/bluelagoon/images/menu_on_end.gif
+%%WWWDIR%%/themes/bluelagoon/images/menu_on_start.gif
+%%WWWDIR%%/themes/bluelagoon/images/menu_on_tile.gif
+%%WWWDIR%%/themes/bluelagoon/images/menu_root.gif
+%%WWWDIR%%/themes/bluelagoon/images/migrate.gif
+%%WWWDIR%%/themes/bluelagoon/images/migration_sucess.jpg
+%%WWWDIR%%/themes/bluelagoon/images/minus.gif
+%%WWWDIR%%/themes/bluelagoon/images/moduleSelectorBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_del.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_del_down.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_del_over.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_down.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_down_disabled.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_down_down.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_down_over.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_up.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_up_disabled.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_up_down.gif
+%%WWWDIR%%/themes/bluelagoon/images/movecol_up_over.gif
+%%WWWDIR%%/themes/bluelagoon/images/myGroupAllocation.gif
+%%WWWDIR%%/themes/bluelagoon/images/myTickets.gif
+%%WWWDIR%%/themes/bluelagoon/images/myTopAccounts.gif
+%%WWWDIR%%/themes/bluelagoon/images/myTopInvoices.gif
+%%WWWDIR%%/themes/bluelagoon/images/myTopOpenPotentials.gif
+%%WWWDIR%%/themes/bluelagoon/images/myTopSalesOrders.gif
+%%WWWDIR%%/themes/bluelagoon/images/myUpcoPendAct.gif
+%%WWWDIR%%/themes/bluelagoon/images/next.gif
+%%WWWDIR%%/themes/bluelagoon/images/nextRecord.gif
+%%WWWDIR%%/themes/bluelagoon/images/next_disabled.gif
+%%WWWDIR%%/themes/bluelagoon/images/no.gif
+%%WWWDIR%%/themes/bluelagoon/images/notification.gif
+%%WWWDIR%%/themes/bluelagoon/images/number.gif
+%%WWWDIR%%/themes/bluelagoon/images/offstar.gif
+%%WWWDIR%%/themes/bluelagoon/images/ogmailserver.gif
+%%WWWDIR%%/themes/bluelagoon/images/one.gif
+%%WWWDIR%%/themes/bluelagoon/images/onstar.gif
+%%WWWDIR%%/themes/bluelagoon/images/orgshar.gif
+%%WWWDIR%%/themes/bluelagoon/images/pendingEvents.gif
+%%WWWDIR%%/themes/bluelagoon/images/pending_left.gif
+%%WWWDIR%%/themes/bluelagoon/images/pending_right.gif
+%%WWWDIR%%/themes/bluelagoon/images/percent.gif
+%%WWWDIR%%/themes/bluelagoon/images/phone.gif
+%%WWWDIR%%/themes/bluelagoon/images/picklist.gif
+%%WWWDIR%%/themes/bluelagoon/images/picklistEditor.gif
+%%WWWDIR%%/themes/bluelagoon/images/picklist_hint.gif
+%%WWWDIR%%/themes/bluelagoon/images/plsWaitAnimated.gif
+%%WWWDIR%%/themes/bluelagoon/images/plus.gif
+%%WWWDIR%%/themes/bluelagoon/images/pointer.gif
+%%WWWDIR%%/themes/bluelagoon/images/popupHdr.jpg
+%%WWWDIR%%/themes/bluelagoon/images/previous.gif
+%%WWWDIR%%/themes/bluelagoon/images/previousRecord.gif
+%%WWWDIR%%/themes/bluelagoon/images/previous_disabled.gif
+%%WWWDIR%%/themes/bluelagoon/images/pricebook.gif
+%%WWWDIR%%/themes/bluelagoon/images/primeTopBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/print.gif
+%%WWWDIR%%/themes/bluelagoon/images/private.gif
+%%WWWDIR%%/themes/bluelagoon/images/proxy.gif
+%%WWWDIR%%/themes/bluelagoon/images/prvPrfBottomLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/prvPrfBottomRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/prvPrfHdrArrow.gif
+%%WWWDIR%%/themes/bluelagoon/images/prvPrfSelectedTick.gif
+%%WWWDIR%%/themes/bluelagoon/images/prvPrfTopLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/prvPrfTopRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/public.gif
+%%WWWDIR%%/themes/bluelagoon/images/qcBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/qcName.gif
+%%WWWDIR%%/themes/bluelagoon/images/reload.gif
+%%WWWDIR%%/themes/bluelagoon/images/report_bg.gif
+%%WWWDIR%%/themes/bluelagoon/images/report_bottom.gif
+%%WWWDIR%%/themes/bluelagoon/images/report_btn.gif
+%%WWWDIR%%/themes/bluelagoon/images/report_newHdr.gif
+%%WWWDIR%%/themes/bluelagoon/images/reportsCreate.gif
+%%WWWDIR%%/themes/bluelagoon/images/reportsDelete.gif
+%%WWWDIR%%/themes/bluelagoon/images/reportsFolderCreate.gif
+%%WWWDIR%%/themes/bluelagoon/images/reportsMove.gif
+%%WWWDIR%%/themes/bluelagoon/images/right.gif
+%%WWWDIR%%/themes/bluelagoon/images/right_arc.gif
+%%WWWDIR%%/themes/bluelagoon/images/rss.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplayBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplayBottom.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplayBottomLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplayBottomRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplayLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplayRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplaySpeaker.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplayTop.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplayTopLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssDisplayTopRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssHeader.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssOnHeader.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssdelete.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssforward.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssframeHdr.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssimage.gif
+%%WWWDIR%%/themes/bluelagoon/images/rssroot.gif
+%%WWWDIR%%/themes/bluelagoon/images/scroll_left.gif
+%%WWWDIR%%/themes/bluelagoon/images/scroll_left_down.gif
+%%WWWDIR%%/themes/bluelagoon/images/scroll_right.gif
+%%WWWDIR%%/themes/bluelagoon/images/scroll_right_down.gif
+%%WWWDIR%%/themes/bluelagoon/images/search.gif
+%%WWWDIR%%/themes/bluelagoon/images/searchUIBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/searching.gif
+%%WWWDIR%%/themes/bluelagoon/images/select.gif
+%%WWWDIR%%/themes/bluelagoon/images/set-IcoLoginHistory.gif
+%%WWWDIR%%/themes/bluelagoon/images/set-IcoTwoTabConfig.gif
+%%WWWDIR%%/themes/bluelagoon/images/settingsActBtnDelete.gif
+%%WWWDIR%%/themes/bluelagoon/images/settingsActBtnDuplicate.gif
+%%WWWDIR%%/themes/bluelagoon/images/settingsActBtnEdit.gif
+%%WWWDIR%%/themes/bluelagoon/images/settingsInvNumber.gif
+%%WWWDIR%%/themes/bluelagoon/images/settingsMTBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/settingsSelUIBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/settings_top.gif
+%%WWWDIR%%/themes/bluelagoon/images/shareaccess.gif
+%%WWWDIR%%/themes/bluelagoon/images/showDown.gif
+%%WWWDIR%%/themes/bluelagoon/images/showPanelTopBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/showPanelTopLeft.gif
+%%WWWDIR%%/themes/bluelagoon/images/showPanelTopRight.gif
+%%WWWDIR%%/themes/bluelagoon/images/showsubmenu.gif
+%%WWWDIR%%/themes/bluelagoon/images/site_bg.gif
+%%WWWDIR%%/themes/bluelagoon/images/site_bg_.gif
+%%WWWDIR%%/themes/bluelagoon/images/site_hdr.jpg
+%%WWWDIR%%/themes/bluelagoon/images/site_sel.jpg
+%%WWWDIR%%/themes/bluelagoon/images/site_unsel.jpg
+%%WWWDIR%%/themes/bluelagoon/images/skype.gif
+%%WWWDIR%%/themes/bluelagoon/images/small_left.gif
+%%WWWDIR%%/themes/bluelagoon/images/small_right.gif
+%%WWWDIR%%/themes/bluelagoon/images/spacer.gif
+%%WWWDIR%%/themes/bluelagoon/images/start.gif
+%%WWWDIR%%/themes/bluelagoon/images/start_disabled.gif
+%%WWWDIR%%/themes/bluelagoon/images/status.gif
+%%WWWDIR%%/themes/bluelagoon/images/strikeline.gif
+%%WWWDIR%%/themes/bluelagoon/images/summarize.gif
+%%WWWDIR%%/themes/bluelagoon/images/system.gif
+%%WWWDIR%%/themes/bluelagoon/images/tabRht.gif
+%%WWWDIR%%/themes/bluelagoon/images/tabSelectedBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/tabSeperatorBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/tabUnSelectedBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/tabular.gif
+%%WWWDIR%%/themes/bluelagoon/images/tagCloudBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/tagCloudName.gif
+%%WWWDIR%%/themes/bluelagoon/images/tagcloud_03.gif
+%%WWWDIR%%/themes/bluelagoon/images/taxConfiguration.gif
+%%WWWDIR%%/themes/bluelagoon/images/tbarChat-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/tbarChat.gif
+%%WWWDIR%%/themes/bluelagoon/images/tbarExport-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/tbarExport.gif
+%%WWWDIR%%/themes/bluelagoon/images/tbarImport-Faded.gif
+%%WWWDIR%%/themes/bluelagoon/images/tbarImport.gif
+%%WWWDIR%%/themes/bluelagoon/images/tbarPrivateChat.gif
+%%WWWDIR%%/themes/bluelagoon/images/tbarPublicChat.gif
+%%WWWDIR%%/themes/bluelagoon/images/tbarSettings.gif
+%%WWWDIR%%/themes/bluelagoon/images/tblPro1BtnHide.gif
+%%WWWDIR%%/themes/bluelagoon/images/tblPro1ColBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/terms.gif
+%%WWWDIR%%/themes/bluelagoon/images/text.gif
+%%WWWDIR%%/themes/bluelagoon/images/titleMailClient.gif
+%%WWWDIR%%/themes/bluelagoon/images/titleMySites.gif
+%%WWWDIR%%/themes/bluelagoon/images/titleRSSReader.gif
+%%WWWDIR%%/themes/bluelagoon/images/todaybg.gif
+%%WWWDIR%%/themes/bluelagoon/images/topBg.gif
+%%WWWDIR%%/themes/bluelagoon/images/topBnr.gif
+%%WWWDIR%%/themes/bluelagoon/images/top_left.jpg
+%%WWWDIR%%/themes/bluelagoon/images/top_right.jpg
+%%WWWDIR%%/themes/bluelagoon/images/topbar.gif
+%%WWWDIR%%/themes/bluelagoon/images/topcut.gif
+%%WWWDIR%%/themes/bluelagoon/images/up.gif
+%%WWWDIR%%/themes/bluelagoon/images/uparrow.gif
+%%WWWDIR%%/themes/bluelagoon/images/upcomingEvents.gif
+%%WWWDIR%%/themes/bluelagoon/images/upcoming_left.gif
+%%WWWDIR%%/themes/bluelagoon/images/upcoming_right.gif
+%%WWWDIR%%/themes/bluelagoon/images/url.gif
+%%WWWDIR%%/themes/bluelagoon/images/user_icon.gif
+%%WWWDIR%%/themes/bluelagoon/images/vtbusy.gif
+%%WWWDIR%%/themes/bluelagoon/images/vtiger-crm.gif
+%%WWWDIR%%/themes/bluelagoon/images/vtiger.jpg
+%%WWWDIR%%/themes/bluelagoon/images/vtigerDevDocs.gif
+%%WWWDIR%%/themes/bluelagoon/images/webmail_downarrow.gif
+%%WWWDIR%%/themes/bluelagoon/images/webmail_header.gif
+%%WWWDIR%%/themes/bluelagoon/images/webmail_root.gif
+%%WWWDIR%%/themes/bluelagoon/images/webmail_settings.gif
+%%WWWDIR%%/themes/bluelagoon/images/webmail_trash.gif
+%%WWWDIR%%/themes/bluelagoon/images/webmail_uparrow.gif
+%%WWWDIR%%/themes/bluelagoon/images/windowmarkModule.jpg
+%%WWWDIR%%/themes/bluelagoon/images/yes.gif
+%%WWWDIR%%/themes/bluelagoon/layout_utils.php
+%%WWWDIR%%/themes/bluelagoon/loginheader.html
+%%WWWDIR%%/themes/bluelagoon/loginheader.php
+%%WWWDIR%%/themes/bluelagoon/style.css
+%%WWWDIR%%/themes/bluelagoon/webmail.css
+%%WWWDIR%%/themes/images/attachments.gif
+%%WWWDIR%%/themes/images/blank.gif
+%%WWWDIR%%/themes/images/btnSignIn.gif
+%%WWWDIR%%/themes/images/btnSignInNEW.gif
+%%WWWDIR%%/themes/images/bullets.gif
+%%WWWDIR%%/themes/images/check_mail.gif
+%%WWWDIR%%/themes/images/compose.gif
+%%WWWDIR%%/themes/images/folder.gif
+%%WWWDIR%%/themes/images/folder1.gif
+%%WWWDIR%%/themes/images/folder2_.gif
+%%WWWDIR%%/themes/images/folder_.gif
+%%WWWDIR%%/themes/images/honestCRM.gif
+%%WWWDIR%%/themes/images/honestCRMTop.gif
+%%WWWDIR%%/themes/images/important1.gif
+%%WWWDIR%%/themes/images/important2.gif
+%%WWWDIR%%/themes/images/loginBottomShadowBg.gif
+%%WWWDIR%%/themes/images/loginBottomShadowLeft.gif
+%%WWWDIR%%/themes/images/loginBottomShadowRight.gif
+%%WWWDIR%%/themes/images/loginBtnSignIn.gif
+%%WWWDIR%%/themes/images/loginPromoText.gif
+%%WWWDIR%%/themes/images/loginSignIn.gif
+%%WWWDIR%%/themes/images/loginSignInShade.gif
+%%WWWDIR%%/themes/images/loginTopHeaderBg.gif
+%%WWWDIR%%/themes/images/loginTopHeaderName.gif
+%%WWWDIR%%/themes/images/loginTopVersion.gif
+%%WWWDIR%%/themes/images/mail.gif
+%%WWWDIR%%/themes/images/mailsettings.gif
+%%WWWDIR%%/themes/images/mymail.gif
+%%WWWDIR%%/themes/images/newmail.gif
+%%WWWDIR%%/themes/images/opened_folder.gif
+%%WWWDIR%%/themes/images/openmail.gif
+%%WWWDIR%%/themes/images/replymail.gif
+%%WWWDIR%%/themes/images/sentmail.gif
+%%WWWDIR%%/themes/images/signin.gif
+%%WWWDIR%%/themes/images/topBg.gif
+%%WWWDIR%%/themes/images/vtiger-paw.jpg
+%%WWWDIR%%/themes/images/vtiger.jpg
+%%WWWDIR%%/themes/images/vtigerName.gif
+%%WWWDIR%%/themes/images/webmail_settings.gif
+%%WWWDIR%%/themes/images/webmail_trash.gif
+%%WWWDIR%%/themes/woodspice/chat.css
+%%WWWDIR%%/themes/woodspice/footer.php
+%%WWWDIR%%/themes/woodspice/header.php
+%%WWWDIR%%/themes/woodspice/images/2tbarPrivateChat.gif
+%%WWWDIR%%/themes/woodspice/images/2tbarPublicChat.gif
+%%WWWDIR%%/themes/woodspice/images/Accounts.gif
+%%WWWDIR%%/themes/woodspice/images/AddEvent.gif
+%%WWWDIR%%/themes/woodspice/images/AddToDo.gif
+%%WWWDIR%%/themes/woodspice/images/Call.gif
+%%WWWDIR%%/themes/woodspice/images/Calls.gif
+%%WWWDIR%%/themes/woodspice/images/Contacts.gif
+%%WWWDIR%%/themes/woodspice/images/HomeBtm.gif
+%%WWWDIR%%/themes/woodspice/images/Home_15.gif
+%%WWWDIR%%/themes/woodspice/images/Leads.gif
+%%WWWDIR%%/themes/woodspice/images/Meeting.gif
+%%WWWDIR%%/themes/woodspice/images/Meetings.gif
+%%WWWDIR%%/themes/woodspice/images/Opportunities.gif
+%%WWWDIR%%/themes/woodspice/images/Potentials.gif
+%%WWWDIR%%/themes/woodspice/images/Quotes.gif
+%%WWWDIR%%/themes/woodspice/images/Recurring.gif
+%%WWWDIR%%/themes/woodspice/images/Reports_arrow.gif
+%%WWWDIR%%/themes/woodspice/images/RolesDelete.gif
+%%WWWDIR%%/themes/woodspice/images/RolesEdit.gif
+%%WWWDIR%%/themes/woodspice/images/RolesMove.gif
+%%WWWDIR%%/themes/woodspice/images/Rolesadd.gif
+%%WWWDIR%%/themes/woodspice/images/Settings.gif
+%%WWWDIR%%/themes/woodspice/images/Tasks.gif
+%%WWWDIR%%/themes/woodspice/images/Thumbs.db
+%%WWWDIR%%/themes/woodspice/images/Tickets.gif
+%%WWWDIR%%/themes/woodspice/images/TopOpenQuotes.gif
+%%WWWDIR%%/themes/woodspice/images/ViewTemplate.gif
+%%WWWDIR%%/themes/woodspice/images/aboutUS.jpg
+%%WWWDIR%%/themes/woodspice/images/about_btm.jpg
+%%WWWDIR%%/themes/woodspice/images/actionGenPurchaseOrder.gif
+%%WWWDIR%%/themes/woodspice/images/actionGenerateInvoice.gif
+%%WWWDIR%%/themes/woodspice/images/actionGeneratePDF.gif
+%%WWWDIR%%/themes/woodspice/images/actionGenerateQuote.gif
+%%WWWDIR%%/themes/woodspice/images/actionGenerateSalesOrder.gif
+%%WWWDIR%%/themes/woodspice/images/actionPrintNow.gif
+%%WWWDIR%%/themes/woodspice/images/addrss.gif
+%%WWWDIR%%/themes/woodspice/images/advancedSearchLens.gif
+%%WWWDIR%%/themes/woodspice/images/announ.gif
+%%WWWDIR%%/themes/woodspice/images/arrow.jpg
+%%WWWDIR%%/themes/woodspice/images/arrow_down.gif
+%%WWWDIR%%/themes/woodspice/images/arrow_up.gif
+%%WWWDIR%%/themes/woodspice/images/assign.gif
+%%WWWDIR%%/themes/woodspice/images/attachment.gif
+%%WWWDIR%%/themes/woodspice/images/audit.gif
+%%WWWDIR%%/themes/woodspice/images/backupserver.gif
+%%WWWDIR%%/themes/woodspice/images/basicSearchLens.gif
+%%WWWDIR%%/themes/woodspice/images/bl_bar.jpg
+%%WWWDIR%%/themes/woodspice/images/black.png
+%%WWWDIR%%/themes/woodspice/images/blank.gif
+%%WWWDIR%%/themes/woodspice/images/bookMark.gif
+%%WWWDIR%%/themes/woodspice/images/bottom_left.jpg
+%%WWWDIR%%/themes/woodspice/images/bottom_right.jpg
+%%WWWDIR%%/themes/woodspice/images/box_BL.gif
+%%WWWDIR%%/themes/woodspice/images/box_BR.gif
+%%WWWDIR%%/themes/woodspice/images/box_M.gif
+%%WWWDIR%%/themes/woodspice/images/box_ML.gif
+%%WWWDIR%%/themes/woodspice/images/box_MR.gif
+%%WWWDIR%%/themes/woodspice/images/box_T.gif
+%%WWWDIR%%/themes/woodspice/images/box_TL.gif
+%%WWWDIR%%/themes/woodspice/images/box_TR.gif
+%%WWWDIR%%/themes/woodspice/images/btnAlexa.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Add-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Add.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3AllMenu-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3AllMenu.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Calc-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Calc.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Calendar-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Calendar.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Clock-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Clock.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Search-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Search.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Tracker-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/btnL3Tracker.gif
+%%WWWDIR%%/themes/woodspice/images/btn_close.gif
+%%WWWDIR%%/themes/woodspice/images/btn_hide.gif
+%%WWWDIR%%/themes/woodspice/images/btn_send.gif
+%%WWWDIR%%/themes/woodspice/images/busy.gif
+%%WWWDIR%%/themes/woodspice/images/bx_B.gif
+%%WWWDIR%%/themes/woodspice/images/cal12x12Shared.gif
+%%WWWDIR%%/themes/woodspice/images/cal16x16Call.jpg
+%%WWWDIR%%/themes/woodspice/images/cal16x16CallAdd.jpg
+%%WWWDIR%%/themes/woodspice/images/cal16x16Linked.jpg
+%%WWWDIR%%/themes/woodspice/images/cal16x16Meeting.jpg
+%%WWWDIR%%/themes/woodspice/images/cal16x16MeetingAdd.jpg
+%%WWWDIR%%/themes/woodspice/images/cal16x16Shared.jpg
+%%WWWDIR%%/themes/woodspice/images/cal16x16ToDo.jpg
+%%WWWDIR%%/themes/woodspice/images/cal16x16ToDoAdd.jpg
+%%WWWDIR%%/themes/woodspice/images/calAddButtonBg.gif
+%%WWWDIR%%/themes/woodspice/images/calBg.gif
+%%WWWDIR%%/themes/woodspice/images/calBottomBg.gif
+%%WWWDIR%%/themes/woodspice/images/calBottomLeft.gif
+%%WWWDIR%%/themes/woodspice/images/calBottomRight.gif
+%%WWWDIR%%/themes/woodspice/images/calNavNext.gif
+%%WWWDIR%%/themes/woodspice/images/calNavPrev.gif
+%%WWWDIR%%/themes/woodspice/images/calSep.gif
+%%WWWDIR%%/themes/woodspice/images/calTopLeft.gif
+%%WWWDIR%%/themes/woodspice/images/calTopRight.gif
+%%WWWDIR%%/themes/woodspice/images/cal_Hdr.gif
+%%WWWDIR%%/themes/woodspice/images/cal_Others.gif
+%%WWWDIR%%/themes/woodspice/images/cal_add.gif
+%%WWWDIR%%/themes/woodspice/images/cal_add.jpg
+%%WWWDIR%%/themes/woodspice/images/cal_clock.jpg
+%%WWWDIR%%/themes/woodspice/images/cal_event.jpg
+%%WWWDIR%%/themes/woodspice/images/cal_hdr.jpg
+%%WWWDIR%%/themes/woodspice/images/cal_nav.gif
+%%WWWDIR%%/themes/woodspice/images/cal_next_nav.gif
+%%WWWDIR%%/themes/woodspice/images/cal_prev_nav.gif
+%%WWWDIR%%/themes/woodspice/images/cal_sel.jpg
+%%WWWDIR%%/themes/woodspice/images/cal_sharing.jpg
+%%WWWDIR%%/themes/woodspice/images/cal_title.jpg
+%%WWWDIR%%/themes/woodspice/images/calc_back_btn.gif
+%%WWWDIR%%/themes/woodspice/images/calc_black_btn.gif
+%%WWWDIR%%/themes/woodspice/images/calc_blue_btn.gif
+%%WWWDIR%%/themes/woodspice/images/calc_bottom_center.gif
+%%WWWDIR%%/themes/woodspice/images/calc_bottom_left.gif
+%%WWWDIR%%/themes/woodspice/images/calc_bottom_right.gif
+%%WWWDIR%%/themes/woodspice/images/calc_canc_btn.gif
+%%WWWDIR%%/themes/woodspice/images/calc_grey_btn.gif
+%%WWWDIR%%/themes/woodspice/images/calc_logo.gif
+%%WWWDIR%%/themes/woodspice/images/calc_mem_btn.gif
+%%WWWDIR%%/themes/woodspice/images/calc_middle_right.gif
+%%WWWDIR%%/themes/woodspice/images/calc_red_btn.gif
+%%WWWDIR%%/themes/woodspice/images/calc_res_bc.gif
+%%WWWDIR%%/themes/woodspice/images/calc_res_bl.gif
+%%WWWDIR%%/themes/woodspice/images/calc_res_br.gif
+%%WWWDIR%%/themes/woodspice/images/calc_res_ml.gif
+%%WWWDIR%%/themes/woodspice/images/calc_res_mr.gif
+%%WWWDIR%%/themes/woodspice/images/calc_res_tc.gif
+%%WWWDIR%%/themes/woodspice/images/calc_res_tl.gif
+%%WWWDIR%%/themes/woodspice/images/calc_res_tr.gif
+%%WWWDIR%%/themes/woodspice/images/calc_top_left.gif
+%%WWWDIR%%/themes/woodspice/images/calc_top_right.gif
+%%WWWDIR%%/themes/woodspice/images/calendar.gif
+%%WWWDIR%%/themes/woodspice/images/cfcurrency.gif
+%%WWWDIR%%/themes/woodspice/images/cfpicklist.gif
+%%WWWDIR%%/themes/woodspice/images/check_mail.gif
+%%WWWDIR%%/themes/woodspice/images/checkbox.gif
+%%WWWDIR%%/themes/woodspice/images/clear_field.gif
+%%WWWDIR%%/themes/woodspice/images/clock_bg.gif
+%%WWWDIR%%/themes/woodspice/images/close.gif
+%%WWWDIR%%/themes/woodspice/images/collapse.gif
+%%WWWDIR%%/themes/woodspice/images/company.gif
+%%WWWDIR%%/themes/woodspice/images/compose.gif
+%%WWWDIR%%/themes/woodspice/images/composeMail.jpg
+%%WWWDIR%%/themes/woodspice/images/currency.gif
+%%WWWDIR%%/themes/woodspice/images/currencydelete.gif
+%%WWWDIR%%/themes/woodspice/images/custom.gif
+%%WWWDIR%%/themes/woodspice/images/dashBottomBg.gif
+%%WWWDIR%%/themes/woodspice/images/dashSelectBg.gif
+%%WWWDIR%%/themes/woodspice/images/dashTopBg.gif
+%%WWWDIR%%/themes/woodspice/images/dash_btm.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_btm_center.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_btm_left.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_btm_right.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_down_arrow.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_name.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_screw.gif
+%%WWWDIR%%/themes/woodspice/images/dash_screw.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_scroll_up.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_sel_btm.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_sel_chart.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_sel_left.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_sel_top.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_switch_view.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_top.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_top_shadow.jpg
+%%WWWDIR%%/themes/woodspice/images/dash_unsel_chart.jpg
+%%WWWDIR%%/themes/woodspice/images/date.gif
+%%WWWDIR%%/themes/woodspice/images/dboardMatrixView.gif
+%%WWWDIR%%/themes/woodspice/images/dboardNormalView.gif
+%%WWWDIR%%/themes/woodspice/images/del.gif
+%%WWWDIR%%/themes/woodspice/images/del_tag.gif
+%%WWWDIR%%/themes/woodspice/images/delete.gif
+%%WWWDIR%%/themes/woodspice/images/denied.gif
+%%WWWDIR%%/themes/woodspice/images/disabled.gif
+%%WWWDIR%%/themes/woodspice/images/editfield.gif
+%%WWWDIR%%/themes/woodspice/images/email.gif
+%%WWWDIR%%/themes/woodspice/images/emailDelete.gif
+%%WWWDIR%%/themes/woodspice/images/emailInFolder.gif
+%%WWWDIR%%/themes/woodspice/images/emailOutFolder.gif
+%%WWWDIR%%/themes/woodspice/images/emailTrashFolder.gif
+%%WWWDIR%%/themes/woodspice/images/empty.jpg
+%%WWWDIR%%/themes/woodspice/images/enabled.gif
+%%WWWDIR%%/themes/woodspice/images/end.gif
+%%WWWDIR%%/themes/woodspice/images/end_disabled.gif
+%%WWWDIR%%/themes/woodspice/images/expand.gif
+%%WWWDIR%%/themes/woodspice/images/free.gif
+%%WWWDIR%%/themes/woodspice/images/hdrTabBg.gif
+%%WWWDIR%%/themes/woodspice/images/head_end.gif
+%%WWWDIR%%/themes/woodspice/images/head_start.gif
+%%WWWDIR%%/themes/woodspice/images/help.gif
+%%WWWDIR%%/themes/woodspice/images/help_icon.gif
+%%WWWDIR%%/themes/woodspice/images/hometop.gif
+%%WWWDIR%%/themes/woodspice/images/ico-groups.gif
+%%WWWDIR%%/themes/woodspice/images/ico-profile.gif
+%%WWWDIR%%/themes/woodspice/images/ico-roles.gif
+%%WWWDIR%%/themes/woodspice/images/ico-users.gif
+%%WWWDIR%%/themes/woodspice/images/inventory.gif
+%%WWWDIR%%/themes/woodspice/images/jump.gif
+%%WWWDIR%%/themes/woodspice/images/keyMetrics.gif
+%%WWWDIR%%/themes/woodspice/images/layerPopupBg.gif
+%%WWWDIR%%/themes/woodspice/images/left.gif
+%%WWWDIR%%/themes/woodspice/images/left_arc.gif
+%%WWWDIR%%/themes/woodspice/images/level2TabBg.gif
+%%WWWDIR%%/themes/woodspice/images/loginBg.gif
+%%WWWDIR%%/themes/woodspice/images/loginBottomBg.gif
+%%WWWDIR%%/themes/woodspice/images/loginBottomURL.gif
+%%WWWDIR%%/themes/woodspice/images/loginSIBottomLeft.gif
+%%WWWDIR%%/themes/woodspice/images/loginSIBottomRight.gif
+%%WWWDIR%%/themes/woodspice/images/loginSITopLeft.gif
+%%WWWDIR%%/themes/woodspice/images/loginSITopRight.gif
+%%WWWDIR%%/themes/woodspice/images/loginTopShade.gif
+%%WWWDIR%%/themes/woodspice/images/logout.gif
+%%WWWDIR%%/themes/woodspice/images/lvtNavBtnFirst.gif
+%%WWWDIR%%/themes/woodspice/images/lvtNavBtnLast.gif
+%%WWWDIR%%/themes/woodspice/images/lvtNavBtnNext.gif
+%%WWWDIR%%/themes/woodspice/images/lvtNavBtnPrev.gif
+%%WWWDIR%%/themes/woodspice/images/mailHdr.jpg
+%%WWWDIR%%/themes/woodspice/images/mailSubHeaderBg.gif
+%%WWWDIR%%/themes/woodspice/images/mailTitle.jpg
+%%WWWDIR%%/themes/woodspice/images/mailmarge.gif
+%%WWWDIR%%/themes/woodspice/images/menuDnArrow.gif
+%%WWWDIR%%/themes/woodspice/images/menu_off_end.gif
+%%WWWDIR%%/themes/woodspice/images/menu_off_start.gif
+%%WWWDIR%%/themes/woodspice/images/menu_off_tile.gif
+%%WWWDIR%%/themes/woodspice/images/menu_on_end.gif
+%%WWWDIR%%/themes/woodspice/images/menu_on_start.gif
+%%WWWDIR%%/themes/woodspice/images/menu_on_tile.gif
+%%WWWDIR%%/themes/woodspice/images/menu_root.gif
+%%WWWDIR%%/themes/woodspice/images/migrate.gif
+%%WWWDIR%%/themes/woodspice/images/migration_sucess.jpg
+%%WWWDIR%%/themes/woodspice/images/minus.gif
+%%WWWDIR%%/themes/woodspice/images/moduleSelectorBg.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_del.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_del_down.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_del_over.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_down.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_down_disabled.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_down_down.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_down_over.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_up.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_up_disabled.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_up_down.gif
+%%WWWDIR%%/themes/woodspice/images/movecol_up_over.gif
+%%WWWDIR%%/themes/woodspice/images/myGroupAllocation.gif
+%%WWWDIR%%/themes/woodspice/images/myTickets.gif
+%%WWWDIR%%/themes/woodspice/images/myTopAccounts.gif
+%%WWWDIR%%/themes/woodspice/images/myTopInvoices.gif
+%%WWWDIR%%/themes/woodspice/images/myTopOpenPotentials.gif
+%%WWWDIR%%/themes/woodspice/images/myTopSalesOrders.gif
+%%WWWDIR%%/themes/woodspice/images/myUpcoPendAct.gif
+%%WWWDIR%%/themes/woodspice/images/next.gif
+%%WWWDIR%%/themes/woodspice/images/next_disabled.gif
+%%WWWDIR%%/themes/woodspice/images/no.gif
+%%WWWDIR%%/themes/woodspice/images/notification.gif
+%%WWWDIR%%/themes/woodspice/images/number.gif
+%%WWWDIR%%/themes/woodspice/images/offstar.gif
+%%WWWDIR%%/themes/woodspice/images/ogmailserver.gif
+%%WWWDIR%%/themes/woodspice/images/one.gif
+%%WWWDIR%%/themes/woodspice/images/onstar.gif
+%%WWWDIR%%/themes/woodspice/images/orgshar.gif
+%%WWWDIR%%/themes/woodspice/images/pendingEvents.gif
+%%WWWDIR%%/themes/woodspice/images/pending_left.gif
+%%WWWDIR%%/themes/woodspice/images/pending_right.gif
+%%WWWDIR%%/themes/woodspice/images/percent.gif
+%%WWWDIR%%/themes/woodspice/images/phone.gif
+%%WWWDIR%%/themes/woodspice/images/picklist.gif
+%%WWWDIR%%/themes/woodspice/images/picklistEditor.gif
+%%WWWDIR%%/themes/woodspice/images/picklist_hint.gif
+%%WWWDIR%%/themes/woodspice/images/plsWaitAnimated.gif
+%%WWWDIR%%/themes/woodspice/images/plus.gif
+%%WWWDIR%%/themes/woodspice/images/pointer.gif
+%%WWWDIR%%/themes/woodspice/images/popupHdr.jpg
+%%WWWDIR%%/themes/woodspice/images/previous.gif
+%%WWWDIR%%/themes/woodspice/images/previous_disabled.gif
+%%WWWDIR%%/themes/woodspice/images/pricebook.gif
+%%WWWDIR%%/themes/woodspice/images/primeTopBg.gif
+%%WWWDIR%%/themes/woodspice/images/print.gif
+%%WWWDIR%%/themes/woodspice/images/private.gif
+%%WWWDIR%%/themes/woodspice/images/proxy.gif
+%%WWWDIR%%/themes/woodspice/images/prvPrfBottomLeft.gif
+%%WWWDIR%%/themes/woodspice/images/prvPrfBottomRight.gif
+%%WWWDIR%%/themes/woodspice/images/prvPrfHdrArrow.gif
+%%WWWDIR%%/themes/woodspice/images/prvPrfSelectedTick.gif
+%%WWWDIR%%/themes/woodspice/images/prvPrfTopLeft.gif
+%%WWWDIR%%/themes/woodspice/images/prvPrfTopRight.gif
+%%WWWDIR%%/themes/woodspice/images/public.gif
+%%WWWDIR%%/themes/woodspice/images/qcBg.gif
+%%WWWDIR%%/themes/woodspice/images/qcName.gif
+%%WWWDIR%%/themes/woodspice/images/reload.gif
+%%WWWDIR%%/themes/woodspice/images/report_bg.gif
+%%WWWDIR%%/themes/woodspice/images/report_bottom.gif
+%%WWWDIR%%/themes/woodspice/images/report_btn.gif
+%%WWWDIR%%/themes/woodspice/images/report_newHdr.gif
+%%WWWDIR%%/themes/woodspice/images/reportsCreate.gif
+%%WWWDIR%%/themes/woodspice/images/reportsDelete.gif
+%%WWWDIR%%/themes/woodspice/images/reportsFolderCreate.gif
+%%WWWDIR%%/themes/woodspice/images/reportsMove.gif
+%%WWWDIR%%/themes/woodspice/images/right.gif
+%%WWWDIR%%/themes/woodspice/images/right_arc.gif
+%%WWWDIR%%/themes/woodspice/images/rss.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplayBg.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplayBottom.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplayBottomLeft.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplayBottomRight.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplayLeft.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplayRight.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplaySpeaker.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplayTop.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplayTopLeft.gif
+%%WWWDIR%%/themes/woodspice/images/rssDisplayTopRight.gif
+%%WWWDIR%%/themes/woodspice/images/rssHeader.gif
+%%WWWDIR%%/themes/woodspice/images/rssOnHeader.gif
+%%WWWDIR%%/themes/woodspice/images/rssdelete.gif
+%%WWWDIR%%/themes/woodspice/images/rssforward.gif
+%%WWWDIR%%/themes/woodspice/images/rssframeHdr.gif
+%%WWWDIR%%/themes/woodspice/images/rssimage.gif
+%%WWWDIR%%/themes/woodspice/images/rssroot.gif
+%%WWWDIR%%/themes/woodspice/images/scroll_left.gif
+%%WWWDIR%%/themes/woodspice/images/scroll_left_down.gif
+%%WWWDIR%%/themes/woodspice/images/scroll_right.gif
+%%WWWDIR%%/themes/woodspice/images/scroll_right_down.gif
+%%WWWDIR%%/themes/woodspice/images/search.gif
+%%WWWDIR%%/themes/woodspice/images/searchUIBg.gif
+%%WWWDIR%%/themes/woodspice/images/searching.gif
+%%WWWDIR%%/themes/woodspice/images/select.gif
+%%WWWDIR%%/themes/woodspice/images/set-IcoLoginHistory.gif
+%%WWWDIR%%/themes/woodspice/images/set-IcoTwoTabConfig.gif
+%%WWWDIR%%/themes/woodspice/images/settingsActBtnDelete.gif
+%%WWWDIR%%/themes/woodspice/images/settingsActBtnDuplicate.gif
+%%WWWDIR%%/themes/woodspice/images/settingsActBtnEdit.gif
+%%WWWDIR%%/themes/woodspice/images/settingsInvNumber.gif
+%%WWWDIR%%/themes/woodspice/images/settingsMTBg.gif
+%%WWWDIR%%/themes/woodspice/images/settingsSelUIBg.gif
+%%WWWDIR%%/themes/woodspice/images/settings_top.gif
+%%WWWDIR%%/themes/woodspice/images/shareaccess.gif
+%%WWWDIR%%/themes/woodspice/images/showDown.gif
+%%WWWDIR%%/themes/woodspice/images/showPanelTopBg.gif
+%%WWWDIR%%/themes/woodspice/images/showPanelTopLeft.gif
+%%WWWDIR%%/themes/woodspice/images/showPanelTopRight.gif
+%%WWWDIR%%/themes/woodspice/images/showsubmenu.gif
+%%WWWDIR%%/themes/woodspice/images/site_bg.gif
+%%WWWDIR%%/themes/woodspice/images/site_hdr.jpg
+%%WWWDIR%%/themes/woodspice/images/site_sel.jpg
+%%WWWDIR%%/themes/woodspice/images/site_unsel.jpg
+%%WWWDIR%%/themes/woodspice/images/skype.gif
+%%WWWDIR%%/themes/woodspice/images/small_left.gif
+%%WWWDIR%%/themes/woodspice/images/small_right.gif
+%%WWWDIR%%/themes/woodspice/images/spacer.gif
+%%WWWDIR%%/themes/woodspice/images/start.gif
+%%WWWDIR%%/themes/woodspice/images/start_disabled.gif
+%%WWWDIR%%/themes/woodspice/images/status.gif
+%%WWWDIR%%/themes/woodspice/images/strikeline.gif
+%%WWWDIR%%/themes/woodspice/images/summarize.gif
+%%WWWDIR%%/themes/woodspice/images/system.gif
+%%WWWDIR%%/themes/woodspice/images/tabRht.gif
+%%WWWDIR%%/themes/woodspice/images/tabSelectedBg.gif
+%%WWWDIR%%/themes/woodspice/images/tabSeperatorBg.gif
+%%WWWDIR%%/themes/woodspice/images/tabUnSelectedBg.gif
+%%WWWDIR%%/themes/woodspice/images/tabular.gif
+%%WWWDIR%%/themes/woodspice/images/tagCloudBg.gif
+%%WWWDIR%%/themes/woodspice/images/tagCloudName.gif
+%%WWWDIR%%/themes/woodspice/images/tagcloud_03.gif
+%%WWWDIR%%/themes/woodspice/images/taxConfiguration.gif
+%%WWWDIR%%/themes/woodspice/images/tbarChat-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/tbarChat.gif
+%%WWWDIR%%/themes/woodspice/images/tbarExport-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/tbarExport.gif
+%%WWWDIR%%/themes/woodspice/images/tbarImport-Faded.gif
+%%WWWDIR%%/themes/woodspice/images/tbarImport.gif
+%%WWWDIR%%/themes/woodspice/images/tbarSettings.gif
+%%WWWDIR%%/themes/woodspice/images/tblPro1BtnHide.gif
+%%WWWDIR%%/themes/woodspice/images/tblPro1ColBg.gif
+%%WWWDIR%%/themes/woodspice/images/terms.gif
+%%WWWDIR%%/themes/woodspice/images/text.gif
+%%WWWDIR%%/themes/woodspice/images/titleMailClient.gif
+%%WWWDIR%%/themes/woodspice/images/titleMySites.gif
+%%WWWDIR%%/themes/woodspice/images/titleRSSReader.gif
+%%WWWDIR%%/themes/woodspice/images/todaybg.gif
+%%WWWDIR%%/themes/woodspice/images/topBg.gif
+%%WWWDIR%%/themes/woodspice/images/topBnr.gif
+%%WWWDIR%%/themes/woodspice/images/top_left.jpg
+%%WWWDIR%%/themes/woodspice/images/top_right.jpg
+%%WWWDIR%%/themes/woodspice/images/topbar.gif
+%%WWWDIR%%/themes/woodspice/images/topcut.gif
+%%WWWDIR%%/themes/woodspice/images/up.gif
+%%WWWDIR%%/themes/woodspice/images/uparrow.gif
+%%WWWDIR%%/themes/woodspice/images/upcomingEvents.gif
+%%WWWDIR%%/themes/woodspice/images/upcoming_left.gif
+%%WWWDIR%%/themes/woodspice/images/upcoming_right.gif
+%%WWWDIR%%/themes/woodspice/images/url.gif
+%%WWWDIR%%/themes/woodspice/images/user_icon.gif
+%%WWWDIR%%/themes/woodspice/images/vtbusy.gif
+%%WWWDIR%%/themes/woodspice/images/vtiger-crm.gif
+%%WWWDIR%%/themes/woodspice/images/vtiger.jpg
+%%WWWDIR%%/themes/woodspice/images/vtigerDevDocs.gif
+%%WWWDIR%%/themes/woodspice/images/webmail_downarrow.gif
+%%WWWDIR%%/themes/woodspice/images/webmail_header.gif
+%%WWWDIR%%/themes/woodspice/images/webmail_root.gif
+%%WWWDIR%%/themes/woodspice/images/webmail_settings.gif
+%%WWWDIR%%/themes/woodspice/images/webmail_trash.gif
+%%WWWDIR%%/themes/woodspice/images/webmail_uparrow.gif
+%%WWWDIR%%/themes/woodspice/images/windowmarkModule.jpg
+%%WWWDIR%%/themes/woodspice/images/woodspiceHomeMark.gif
+%%WWWDIR%%/themes/woodspice/images/yes.gif
+%%WWWDIR%%/themes/woodspice/layout_utils.php
+%%WWWDIR%%/themes/woodspice/loginheader.html
+%%WWWDIR%%/themes/woodspice/loginheader.php
+%%WWWDIR%%/themes/woodspice/style.css
+%%WWWDIR%%/themes/woodspice/webmail.css
+%%WWWDIR%%/user_privileges/CustomInvoiceNo.php
+%%WWWDIR%%/user_privileges/audit_trail.php
+%%WWWDIR%%/user_privileges/default_module_view.php
+%%WWWDIR%%/user_privileges/enable_backup.php
+%%WWWDIR%%/user_privileges/index.html
+%%WWWDIR%%/Copyright.txt
+%%WWWDIR%%/PEAR.php
+%%WWWDIR%%/Popup.php
+%%WWWDIR%%/SendReminder.php
+%%WWWDIR%%/Smarty_setup.php
+%%WWWDIR%%/connection.php
+%%WWWDIR%%/getCompanyProfile.php
+%%WWWDIR%%/graph.php
+%%WWWDIR%%/index.php
+%%WWWDIR%%/install.php
+%%WWWDIR%%/log4php.properties
+%%WWWDIR%%/log4php_1.properties
+%%WWWDIR%%/parent_tabdata.php
+%%WWWDIR%%/phprint.php
+%%WWWDIR%%/tabdata.php
+%%WWWDIR%%/vtigerservice.php
+%%WWWDIR%%/vtigerversion.php
+@unexec if cmp -s %D/%%WWWDIR%%/config.db.php.sample %D/%%WWWDIR%%/config.db.php; then /bin/rm -f %D/%%WWWDIR%%/config.db.php; fi
+@unexec if cmp -s %D/%%WWWDIR%%/config.inc.php.sample %D/%%WWWDIR%%/config.inc.php; then /bin/rm -f %D/%%WWWDIR%%/config.inc.php; fi
+@unexec if cmp -s %D/%%WWWDIR%%/config.php.sample %D/%%WWWDIR%%/config.php; then /bin/rm -f %D/%%WWWDIR%%/config.php; fi
+@unexec if cmp -s %D/%%WWWDIR%%/config.template.php.sample %D/%%WWWDIR%%/config.template.php; then /bin/rm -f %D/%%WWWDIR%%/config.template.php; fi
+%%WWWDIR%%/config.db.php.sample
+%%WWWDIR%%/config.inc.php.sample
+%%WWWDIR%%/config.php.sample
+%%WWWDIR%%/config.template.php.sample
+@exec if [ ! -f %D/%%WWWDIR%%/config.db.php ]; then install -m 444 %D/%%WWWDIR%%/config.db.php.sample %D/%%WWWDIR%%/config.db.php; /usr/sbin/chown www %D/%%WWWDIR%%/config.db.php; /bin/chmod u+w %D/%%WWWDIR%%/config.db.php; fi
+@exec if [ ! -f %D/%%WWWDIR%%/config.inc.php ]; then install -m 444 %D/%%WWWDIR%%/config.inc.php.sample %D/%%WWWDIR%%/config.inc.php; /usr/sbin/chown www %D/%%WWWDIR%%/config.inc.php; /bin/chmod u+w %D/%%WWWDIR%%/config.inc.php; fi
+@exec if [ ! -f %D/%%WWWDIR%%/config.php ]; then install -m 444 %D/%%WWWDIR%%/config.php.sample %D/%%WWWDIR%%/config.php; /usr/sbin/chown www %D/%%WWWDIR%%/config.php; /bin/chmod u+w %D/%%WWWDIR%%/config.php; fi
+@exec if [ ! -f %D/%%WWWDIR%%/config.template.php ]; then install -m 444 %D/%%WWWDIR%%/config.template.php.sample %D/%%WWWDIR%%/config.template.php; /usr/sbin/chown www %D/%%WWWDIR%%/config.template.php; /bin/chmod u+w %D/%%WWWDIR%%/config.template.php; fi
+@exec (cd %D/%%WWWDIR%% && /bin/chmod u+w install.php tabdata.php parent_tabdata.php )
+@exec /bin/mkdir -p %D/%%WWWDIR%%/modules/Webmails/tmp/cache
+@exec /bin/mkdir -p %D/%%WWWDIR%%/modules/Migration/ModifyDatabase
+@exec /bin/mkdir -p %D/%%WWWDIR%%/modules/imports/Excel
+@exec /bin/mkdir -p %D/%%WWWDIR%%/modules/Activities
+@exec /bin/mkdir -p %D/%%WWWDIR%%/include/prototype-1.4.0/test/lib
+@exec /bin/mkdir -p %D/%%WWWDIR%%/include/prototype-1.4.0/test/unit
+@exec /bin/mkdir -p %D/%%WWWDIR%%/include/clock
+@exec /bin/mkdir -p %D/%%WWWDIR%%/class_http_dir
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/cache; /bin/chmod -R u+w %D/%%WWWDIR%%/cache
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/storage; /bin/chmod -R u+w %D/%%WWWDIR%%/storage
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/install; /bin/chmod -R u+w %D/%%WWWDIR%%/install
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/tabdata.php; /bin/chmod -R u+w %D/%%WWWDIR%%/tabdata.php
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/parent_tabdata.php; /bin/chmod -R u+w %D/%%WWWDIR%%/parent_tabdata.php
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/install.php; /bin/chmod -R u+w %D/%%WWWDIR%%/install.php
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/user_privileges; /bin/chmod -R u+w %D/%%WWWDIR%%/user_privileges
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/Smarty/cache; /bin/chmod -R u+w %D/%%WWWDIR%%/Smarty/cache
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/Smarty/templates_c; /bin/chmod -R u+w %D/%%WWWDIR%%/Smarty/templates_c
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/modules/Emails/templates/; /bin/chmod -R u+w %D/%%WWWDIR%%/modules/Emails/templates/
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/test/wordtemplatedownload; /bin/chmod -R u+w %D/%%WWWDIR%%/test/wordtemplatedownload
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/test/product/; /bin/chmod -R u+w %D/%%WWWDIR%%/test/product/
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/test/user; /bin/chmod -R u+w %D/%%WWWDIR%%/test/user
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/test/contact; /bin/chmod -R u+w %D/%%WWWDIR%%/test/contact
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/test/logo; /bin/chmod -R u+w %D/%%WWWDIR%%/test/logo
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/logs; /bin/chmod -R u+w %D/%%WWWDIR%%/logs
+@exec /usr/sbin/chown -R www %D/%%WWWDIR%%/modules/Webmails/tmp; /bin/chmod -R u+w %D/%%WWWDIR%%/modules/Webmails/tmp
+@dirrm %%WWWDIR%%/Image/Canvas/Fonts
+@dirrm %%WWWDIR%%/Image/Canvas/GD
+@dirrm %%WWWDIR%%/Image/Canvas
+@dirrm %%WWWDIR%%/Image/Graph/Axis/Marker
+@dirrm %%WWWDIR%%/Image/Graph/Axis
+@dirrm %%WWWDIR%%/Image/Graph/DataPreprocessor
+@dirrm %%WWWDIR%%/Image/Graph/DataSelector
+@dirrm %%WWWDIR%%/Image/Graph/Dataset
+@dirrm %%WWWDIR%%/Image/Graph/Figure
+@dirrm %%WWWDIR%%/Image/Graph/Fill
+@dirrm %%WWWDIR%%/Image/Graph/Grid
+@dirrm %%WWWDIR%%/Image/Graph/Images/Icons
+@dirrm %%WWWDIR%%/Image/Graph/Images/Maps
+@dirrm %%WWWDIR%%/Image/Graph/Images
+@dirrm %%WWWDIR%%/Image/Graph/Layout
+@dirrm %%WWWDIR%%/Image/Graph/Line
+@dirrm %%WWWDIR%%/Image/Graph/Marker/Pointing
+@dirrm %%WWWDIR%%/Image/Graph/Marker
+@dirrm %%WWWDIR%%/Image/Graph/Plot/Fit
+@dirrm %%WWWDIR%%/Image/Graph/Plot/Smoothed
+@dirrm %%WWWDIR%%/Image/Graph/Plot
+@dirrm %%WWWDIR%%/Image/Graph/Plotarea
+@dirrm %%WWWDIR%%/Image/Graph
+@dirrm %%WWWDIR%%/Image
+@dirrm %%WWWDIR%%/Smarty/cache
+@dirrm %%WWWDIR%%/Smarty/configs
+@dirrm %%WWWDIR%%/Smarty/libs/internals
+@dirrm %%WWWDIR%%/Smarty/libs/plugins
+@dirrm %%WWWDIR%%/Smarty/libs
+@dirrm %%WWWDIR%%/Smarty/misc
+@dirrm %%WWWDIR%%/Smarty/templates/Inventory
+@dirrm %%WWWDIR%%/Smarty/templates/Settings
+@dirrm %%WWWDIR%%/Smarty/templates
+@dirrm %%WWWDIR%%/Smarty/templates_c
+@dirrm %%WWWDIR%%/Smarty
+@dirrm %%WWWDIR%%/adodb/contrib
+@dirrm %%WWWDIR%%/adodb/datadict
+@dirrm %%WWWDIR%%/adodb/drivers
+@dirrm %%WWWDIR%%/adodb/lang
+@dirrm %%WWWDIR%%/adodb/pear/Auth/Container
+@dirrm %%WWWDIR%%/adodb/pear/Auth
+@dirrm %%WWWDIR%%/adodb/pear
+@dirrm %%WWWDIR%%/adodb/perf
+@dirrm %%WWWDIR%%/adodb/session/old
+@dirrm %%WWWDIR%%/adodb/session
+@dirrm %%WWWDIR%%/adodb/tests
+@dirrm %%WWWDIR%%/adodb/xsl
+@dirrm %%WWWDIR%%/adodb
+@dirrm %%WWWDIR%%/cache/images
+@dirrm %%WWWDIR%%/cache/import
+@dirrm %%WWWDIR%%/cache/upload
+@dirrm %%WWWDIR%%/cache
+@dirrm %%WWWDIR%%/class_http
+@dirrm %%WWWDIR%%/class_http_dir
+@dirrm %%WWWDIR%%/cron
+@dirrm %%WWWDIR%%/data
+@dirrm %%WWWDIR%%/database
+@dirrm %%WWWDIR%%/include/Ajax
+@dirrm %%WWWDIR%%/include/ListView
+@dirrm %%WWWDIR%%/include/calculator
+@dirrm %%WWWDIR%%/include/clock
+@dirrm %%WWWDIR%%/include/database
+@dirrm %%WWWDIR%%/include/db_backup
+@dirrm %%WWWDIR%%/include/fckeditor/editor/_source/classes
+@dirrm %%WWWDIR%%/include/fckeditor/editor/_source/commandclasses
+@dirrm %%WWWDIR%%/include/fckeditor/editor/_source/globals
+@dirrm %%WWWDIR%%/include/fckeditor/editor/_source/internals
+@dirrm %%WWWDIR%%/include/fckeditor/editor/_source
+@dirrm %%WWWDIR%%/include/fckeditor/editor/css/behaviors
+@dirrm %%WWWDIR%%/include/fckeditor/editor/css
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/common/images
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/common
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/fck_about
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/fck_docprops
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/fck_image
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/fck_link
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/fck_select
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages/server-scripts
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages/spellerpages
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/fck_spellerpages
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog/fck_universalkey
+@dirrm %%WWWDIR%%/include/fckeditor/editor/dialog
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/asp
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/aspx
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/cfm
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/perl
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors/php
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/connectors
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons/32
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images/icons
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/images
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default/js
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser/default
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager/browser
+@dirrm %%WWWDIR%%/include/fckeditor/editor/filemanager
+@dirrm %%WWWDIR%%/include/fckeditor/editor/images
+@dirrm %%WWWDIR%%/include/fckeditor/editor/js
+@dirrm %%WWWDIR%%/include/fckeditor/editor/lang
+@dirrm %%WWWDIR%%/include/fckeditor/editor/plugins/placeholder/lang
+@dirrm %%WWWDIR%%/include/fckeditor/editor/plugins/placeholder
+@dirrm %%WWWDIR%%/include/fckeditor/editor/plugins/tablecommands
+@dirrm %%WWWDIR%%/include/fckeditor/editor/plugins
+@dirrm %%WWWDIR%%/include/fckeditor/editor/skins/default/images
+@dirrm %%WWWDIR%%/include/fckeditor/editor/skins/default/toolbar
+@dirrm %%WWWDIR%%/include/fckeditor/editor/skins/default
+@dirrm %%WWWDIR%%/include/fckeditor/editor/skins/silver/images
+@dirrm %%WWWDIR%%/include/fckeditor/editor/skins/silver/toolbar
+@dirrm %%WWWDIR%%/include/fckeditor/editor/skins/silver
+@dirrm %%WWWDIR%%/include/fckeditor/editor/skins
+@dirrm %%WWWDIR%%/include/fckeditor/editor
+@dirrm %%WWWDIR%%/include/fckeditor
+@dirrm %%WWWDIR%%/include/fpdf/font
+@dirrm %%WWWDIR%%/include/fpdf/templates
+@dirrm %%WWWDIR%%/include/fpdf
+@dirrm %%WWWDIR%%/include/freetag
+@dirrm %%WWWDIR%%/include/images
+@dirrm %%WWWDIR%%/include/install/images
+@dirrm %%WWWDIR%%/include/install
+@dirrm %%WWWDIR%%/include/js
+@dirrm %%WWWDIR%%/include/language
+@dirrm %%WWWDIR%%/include/magpierss/extlib
+@dirrm %%WWWDIR%%/include/magpierss
+@dirrm %%WWWDIR%%/include/nusoap
+@dirrm %%WWWDIR%%/include/php_writeexcel
+@dirrm %%WWWDIR%%/include/prototype-1.4.0/dist
+@dirrm %%WWWDIR%%/include/prototype-1.4.0/lib
+@dirrm %%WWWDIR%%/include/prototype-1.4.0/src
+@dirrm %%WWWDIR%%/include/prototype-1.4.0/test/lib
+@dirrm %%WWWDIR%%/include/prototype-1.4.0/test/unit
+@dirrm %%WWWDIR%%/include/prototype-1.4.0/test
+@dirrm %%WWWDIR%%/include/prototype-1.4.0
+@dirrm %%WWWDIR%%/include/scriptaculous
+@dirrm %%WWWDIR%%/include/utils
+@dirrm %%WWWDIR%%/include
+@dirrm %%WWWDIR%%/install
+@dirrm %%WWWDIR%%/jscalendar/lang
+@dirrm %%WWWDIR%%/jscalendar
+@dirrm %%WWWDIR%%/license
+@dirrm %%WWWDIR%%/log4php/appenders
+@dirrm %%WWWDIR%%/log4php/config
+@dirrm %%WWWDIR%%/log4php/helpers
+@dirrm %%WWWDIR%%/log4php/layouts
+@dirrm %%WWWDIR%%/log4php/or
+@dirrm %%WWWDIR%%/log4php/spi
+@dirrm %%WWWDIR%%/log4php/varia
+@dirrm %%WWWDIR%%/log4php/xml
+@dirrm %%WWWDIR%%/log4php
+@dirrm %%WWWDIR%%/logs
+@dirrm %%WWWDIR%%/modules/Accounts/language
+@dirrm %%WWWDIR%%/modules/Accounts
+@dirrm %%WWWDIR%%/modules/Activities
+@dirrm %%WWWDIR%%/modules/Administration/language
+@dirrm %%WWWDIR%%/modules/Administration
+@dirrm %%WWWDIR%%/modules/Calendar/language
+@dirrm %%WWWDIR%%/modules/Calendar
+@dirrm %%WWWDIR%%/modules/Campaigns/language
+@dirrm %%WWWDIR%%/modules/Campaigns
+@dirrm %%WWWDIR%%/modules/Contacts/imgs
+@dirrm %%WWWDIR%%/modules/Contacts/js
+@dirrm %%WWWDIR%%/modules/Contacts/language
+@dirrm %%WWWDIR%%/modules/Contacts
+@dirrm %%WWWDIR%%/modules/CustomView/language
+@dirrm %%WWWDIR%%/modules/CustomView
+@dirrm %%WWWDIR%%/modules/Dashboard/language
+@dirrm %%WWWDIR%%/modules/Dashboard
+@dirrm %%WWWDIR%%/modules/Emails/language
+@dirrm %%WWWDIR%%/modules/Emails/templates
+@dirrm %%WWWDIR%%/modules/Emails
+@dirrm %%WWWDIR%%/modules/Faq/language
+@dirrm %%WWWDIR%%/modules/Faq
+@dirrm %%WWWDIR%%/modules/Help/language
+@dirrm %%WWWDIR%%/modules/Help
+@dirrm %%WWWDIR%%/modules/HelpDesk/language
+@dirrm %%WWWDIR%%/modules/HelpDesk
+@dirrm %%WWWDIR%%/modules/Home/language
+@dirrm %%WWWDIR%%/modules/Home
+@dirrm %%WWWDIR%%/modules/Import/language
+@dirrm %%WWWDIR%%/modules/Import
+@dirrm %%WWWDIR%%/modules/Invoice/language
+@dirrm %%WWWDIR%%/modules/Invoice/pdf_templates/lastpage
+@dirrm %%WWWDIR%%/modules/Invoice/pdf_templates
+@dirrm %%WWWDIR%%/modules/Invoice
+@dirrm %%WWWDIR%%/modules/Leads/language
+@dirrm %%WWWDIR%%/modules/Leads
+@dirrm %%WWWDIR%%/modules/Migration/DBChanges
+@dirrm %%WWWDIR%%/modules/Migration/ModifyDatabase
+@dirrm %%WWWDIR%%/modules/Migration/language
+@dirrm %%WWWDIR%%/modules/Migration
+@dirrm %%WWWDIR%%/modules/Notes/language
+@dirrm %%WWWDIR%%/modules/Notes
+@dirrm %%WWWDIR%%/modules/Portal/language
+@dirrm %%WWWDIR%%/modules/Portal
+@dirrm %%WWWDIR%%/modules/Potentials/language
+@dirrm %%WWWDIR%%/modules/Potentials
+@dirrm %%WWWDIR%%/modules/PriceBooks/language
+@dirrm %%WWWDIR%%/modules/PriceBooks
+@dirrm %%WWWDIR%%/modules/Products/language
+@dirrm %%WWWDIR%%/modules/Products
+@dirrm %%WWWDIR%%/modules/PurchaseOrder/language
+@dirrm %%WWWDIR%%/modules/PurchaseOrder/pdf_templates/lastpage
+@dirrm %%WWWDIR%%/modules/PurchaseOrder/pdf_templates
+@dirrm %%WWWDIR%%/modules/PurchaseOrder
+@dirrm %%WWWDIR%%/modules/Quotes/language
+@dirrm %%WWWDIR%%/modules/Quotes/pdf_templates/lastpage
+@dirrm %%WWWDIR%%/modules/Quotes/pdf_templates
+@dirrm %%WWWDIR%%/modules/Quotes
+@dirrm %%WWWDIR%%/modules/Reports/language
+@dirrm %%WWWDIR%%/modules/Reports
+@dirrm %%WWWDIR%%/modules/Rss/language
+@dirrm %%WWWDIR%%/modules/Rss
+@dirrm %%WWWDIR%%/modules/SalesOrder/language
+@dirrm %%WWWDIR%%/modules/SalesOrder/pdf_templates/lastpage
+@dirrm %%WWWDIR%%/modules/SalesOrder/pdf_templates
+@dirrm %%WWWDIR%%/modules/SalesOrder
+@dirrm %%WWWDIR%%/modules/Settings/language
+@dirrm %%WWWDIR%%/modules/Settings
+@dirrm %%WWWDIR%%/modules/System/images
+@dirrm %%WWWDIR%%/modules/System/includes/lang
+@dirrm %%WWWDIR%%/modules/System/includes/mb
+@dirrm %%WWWDIR%%/modules/System/includes/os
+@dirrm %%WWWDIR%%/modules/System/includes/xml
+@dirrm %%WWWDIR%%/modules/System/includes
+@dirrm %%WWWDIR%%/modules/System/language
+@dirrm %%WWWDIR%%/modules/System/templates/classic/images
+@dirrm %%WWWDIR%%/modules/System/templates/classic
+@dirrm %%WWWDIR%%/modules/System/templates
+@dirrm %%WWWDIR%%/modules/System
+@dirrm %%WWWDIR%%/modules/Users/language
+@dirrm %%WWWDIR%%/modules/Users
+@dirrm %%WWWDIR%%/modules/Utilities/language
+@dirrm %%WWWDIR%%/modules/Utilities
+@dirrm %%WWWDIR%%/modules/Vendors/language
+@dirrm %%WWWDIR%%/modules/Vendors
+@dirrm %%WWWDIR%%/modules/Webmails/images
+@dirrm %%WWWDIR%%/modules/Webmails/js
+@dirrm %%WWWDIR%%/modules/Webmails/language
+@dirrm %%WWWDIR%%/modules/Webmails/tmp/cache
+@dirrm %%WWWDIR%%/modules/Webmails/tmp
+@dirrm %%WWWDIR%%/modules/Webmails
+@dirrm %%WWWDIR%%/modules/Yahoo/images
+@dirrm %%WWWDIR%%/modules/Yahoo/language
+@dirrm %%WWWDIR%%/modules/Yahoo
+@dirrm %%WWWDIR%%/modules/imports/Excel
+@dirrm %%WWWDIR%%/modules/imports
+@dirrm %%WWWDIR%%/modules/uploads/language
+@dirrm %%WWWDIR%%/modules/uploads
+@dirrm %%WWWDIR%%/modules
+@dirrm %%WWWDIR%%/schema
+@dirrm %%WWWDIR%%/soap
+@dirrm %%WWWDIR%%/storage
+@dirrm %%WWWDIR%%/test/contact
+@dirrm %%WWWDIR%%/test/logo
+@dirrm %%WWWDIR%%/test/product
+@dirrm %%WWWDIR%%/test/upload
+@dirrm %%WWWDIR%%/test/user
+@dirrm %%WWWDIR%%/test/wordtemplatedownload
+@dirrm %%WWWDIR%%/test
+@dirrm %%WWWDIR%%/themes/alphagrey/images
+@dirrm %%WWWDIR%%/themes/alphagrey
+@dirrm %%WWWDIR%%/themes/bluelagoon/images
+@dirrm %%WWWDIR%%/themes/bluelagoon
+@dirrm %%WWWDIR%%/themes/images
+@dirrm %%WWWDIR%%/themes/woodspice/images
+@dirrm %%WWWDIR%%/themes/woodspice
+@dirrm %%WWWDIR%%/themes
+@dirrm %%WWWDIR%%/user_privileges
+@dirrm %%WWWDIR%%