\ No newline at end of file
diff --git a/MKStoreKit/Server Code/DBSetup.sql b/MKStoreKit/Server Code/DBSetup.sql
new file mode 100755
index 0000000..7bd24a5
--- /dev/null
+++ b/MKStoreKit/Server Code/DBSetup.sql
@@ -0,0 +1,41 @@
+-- phpMyAdmin SQL Dump
+-- version 2.11.9.5
+-- http://www.phpmyadmin.net
+--
+-- Host: localhost
+-- Generation Time: Nov 15, 2009 at 08:38 AM
+-- Server version: 5.0.81
+-- PHP Version: 5.2.9
+
+SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
+
+--
+-- Database: `mugunth1_udid`
+--
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `products`
+--
+
+CREATE TABLE IF NOT EXISTS `products` (
+ `productid` varchar(255) NOT NULL,
+ `productName` varchar(30) NOT NULL,
+ `productDesc` varchar(255) NOT NULL
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
+
+-- --------------------------------------------------------
+
+--
+-- Table structure for table `requests`
+--
+
+CREATE TABLE IF NOT EXISTS `requests` (
+ `udid` varchar(40) NOT NULL,
+ `productid` varchar(100) NOT NULL,
+ `email` varchar(100) default NULL,
+ `message` varchar(1000) default NULL,
+ `status` tinyint(1) NOT NULL default '0',
+ `lastUpdated` timestamp NOT NULL default CURRENT_TIMESTAMP
+) ENGINE=MyISAM DEFAULT CHARSET=latin1;
diff --git a/MKStoreKit/Server Code/featureCheck.php b/MKStoreKit/Server Code/featureCheck.php
new file mode 100755
index 0000000..d3b8f45
--- /dev/null
+++ b/MKStoreKit/Server Code/featureCheck.php
@@ -0,0 +1,32 @@
+
diff --git a/MKStoreKit/Server Code/requestAccess.php b/MKStoreKit/Server Code/requestAccess.php
new file mode 100755
index 0000000..1b3d75a
--- /dev/null
+++ b/MKStoreKit/Server Code/requestAccess.php
@@ -0,0 +1,33 @@
+
+
diff --git a/MKStoreKit/readme.txt b/MKStoreKit/readme.txt
new file mode 100755
index 0000000..e28d796
--- /dev/null
+++ b/MKStoreKit/readme.txt
@@ -0,0 +1,34 @@
+This is version 2.0 of MKStoreKit
+
+The source code, MKStoreKit, contains four objective cfiles. MKStoreManager.h/m and MKStoreObserver.h/m and four server side files. The MKStoreManager is a singleton class that takes care of *everything*. Just include StoreKit framework into your product and drag these four files into the project. You then have to initialize it by calling [MKStoreManager sharedManager] in your applicationDidFinishLaunching. From then on, it does the magic. The MKStoreKit automatically activates/deactivates features based on your userDefaults. When a feature is purchased, it automatically records it into NSUserDefaults. For checking whether the user has purchased the feature, you can call a function like,
+
+if([MKStoreManager featureAPurchased])
+{
+//unlock it
+}
+
+To purchase a feature, just call
+
+[[MKStoreManager sharedManager] buyFeatureA];
+
+It’s that simple with my MKStoreKit. As always, all my source code can be used royalty-free into your app. Just make sure that you don’t remove the copyright notice from the source code if you make your app open source. You don’t have to attribute me in your app, although I would be glad if you do so.
+
+Best Practices:
+
+Rename featureAPurchased/buyFeatureA to meaningful functions as per your application. Manage all your product ids without MKStoreManager.m and call these functions. This is to ensure that you don't litter your product ids through out your app.
+
+What's new in Version 2
+
+In Version 2, support for pinging the developer server for checking review requests is added. If you want to use this feature, you have to fill in "ownServer" variable to the location where you copy the server file featureCheck.php
+
+The database required can be created from the sql file attached.
+
+The code that you need for setting up your server is present in the ServerCode folder.
+
+Copy all the files to some location like
+http://api.mycompany.com/inapp/
+
+The URL which you should copy to "ownServer" variable in MKStoreManager.m is http://api.mycompany.com/inapp/featureCheck.php
+Copy this URL to ownServer parameter in MKStoreManager.m
+
+It should all work. If it doesn't, hire me for debugging it! :)
\ No newline at end of file
diff --git a/Xibs/BrowserView.xib b/Xibs/BrowserView.xib
new file mode 100755
index 0000000..f8725c4
--- /dev/null
+++ b/Xibs/BrowserView.xib
@@ -0,0 +1,271 @@
+
+