Added Campaign Impressions to download page

Change-Id: Idcd5351a377108b8809015df3f85333941d8387b
Signed-off-by: Eric Poirier <eric@eclipse.org>
diff --git a/index.php b/index.php
index c72b047..8e10680 100644
--- a/index.php
+++ b/index.php
@@ -17,6 +17,10 @@
   $App = New App();
   $Downloads = new Downloads();
 
+  //Adding a 100% counter for the downloads page
+  $impression = new CampaignImpression('DOWNLOADPAGE', $_SERVER['REQUEST_URI'], @gethostbyaddr($_SERVER['REMOTE_ADDR']));
+  $impression->recordImpression();
+
   // This prevent the banner ad from being displayed
   $Downloads->hideBannerAd();