fixed up deploy tooling to work with new cli run/emulate command
diff --git a/templates/standalone/cordova/lib/deploy.js b/templates/standalone/cordova/lib/deploy.js
index 29a3f7d..448fa78 100644
--- a/templates/standalone/cordova/lib/deploy.js
+++ b/templates/standalone/cordova/lib/deploy.js
@@ -28,6 +28,8 @@
 var CORDOVA_DEPLOY_EXE = '\\cordova\\lib\\CordovaDeploy\\CordovaDeploy\\bin\\Debug\\CordovaDeploy.exe';
     // path to CordovaDeploy
 var CORDOVA_DEPLOY = '\\cordova\\lib\\CordovaDeploy';
+//device_id for targeting specific device
+var device_id;
 
 //build types
 var NONE = 0,
@@ -36,18 +38,27 @@
     NO_BUILD = 3;
 var build_type = NONE;
 
+//deploy tpyes
+var NONE = 0,
+    EMULATOR = 1,
+    DEVICE = 2,
+    TARGET = 3;
+var deploy_type = NONE;
+
 
 // help function
 function Usage() {
     Log("");
-    Log("Usage: run [ --device | --emulator | --target=<id> ] [ --debug | --release | --nobuild ]");
+    Log("Usage:");
+    Log("  run [ --device || --emulator || --target=<id> ] ");
+    Log("      [ --debug || --release || --nobuild ]");
     Log("    --device      : Deploys and runs the project on the connected device.");
-    Log("    --emulator    : Deploys and runs the project on an emulator.");
+    Log("    --emulator    : [DEFAULT] Deploys and runs the project on an emulator.");
     Log("    --target=<id> : Deploys and runs the project on the specified target.");
-    Log("    --debug       : Builds project in debug mode.");
+    Log("    --debug       : [DEFAULT] Builds project in debug mode.");
     Log("    --release     : Builds project in release mode.");
     Log("    --nobuild     : Ueses pre-built xap, or errors if project is not built.");
-    Log("examples:");
+    Log("Examples:");
     Log("    run");
     Log("    run --emulator");
     Log("    run --device");
@@ -184,7 +195,7 @@
 }
 
 // builds and launches the project on the specified target
-function target(path, device_id) {
+function target(path) {
     if (!fso.FileExists(path + CORDOVA_DEPLOY_EXE)) {
         cordovaDeploy(path);
     }
@@ -246,66 +257,68 @@
     }
 }
 
+function run(path) {
+    switch(deploy_type) {
+        case EMULATOR :
+            build(path);
+            emulator(path);
+            break;
+        case DEVICE :
+            build(path);
+            device(path);
+            break;
+        case TARGET :
+            build(path);
+            target(path);
+            break;
+        case NONE :
+            Log("WARNING: [ --target=<ID> | --emulator | --device ] not specified, defaulting to --emulator");
+            build(path);
+            emulator(path);
+            break;
+        default :
+            Log("Deploy option not recognized: " + deploy_type, true);
+            WScript.Quit(2);
+            break;
+    }
+}
+
 
 if (args.Count() > 0) {
-    // support help flags
-    if (args(0) == "--help" || args(0) == "/?" ||
-            args(0) == "help" || args(0) == "-help" || args(0) == "/help") {
-        Usage();
-        WScript.Quit(2);
-    }
-    else if (args.Count() > 2) {
+    // limit args
+    if (args.Count() > 2) {
         Log('Error: Too many arguments.', true);
         Usage();
         WScript.Quit(2);
     }
     else if (fso.FolderExists(ROOT)) {
-        if (args.Count() > 1) {
-            if (args(1) == "--release") {
+        // parse arguments
+        for(var i = 0; i < args.Count(); i++) {
+            if (args(i) == "--release") {
                 build_type = RELEASE;
             }
-            else if (args(1) == "--debug") {
+            else if (args(i) == "--debug") {
                 build_type = DEBUG;
             }
-            else if (args(1) == "--nobuild") {
+            else if (args(i) == "--nobuild") {
                 build_type = NO_BUILD;
             }
-            else {
-                Log('Error: \"' + args(1) + '\" is not recognized as a deploy option', true);
+            else if (args(i) == "--emulator" || args(i) == "-e") {
+                deploy_type = EMULATOR;
+            }
+            else if (args(i) == "--device" || args(i) == "-d") {
+                deploy_type = DEVICE;
+            }
+            else if (args(i).substr(0,9) == "--target=") {
+                device_id = args(i).split("--target=").join("");
+                deploy_type = TARGET;
+            }
+             // support help flags
+            else if (args(0) == "--help" || args(0) == "/?" ||
+                    args(0) == "help" || args(0) == "-help" || args(0) == "/help") {
                 Usage();
                 WScript.Quit(2);
             }
-        }
-
-        if (args(0) == "--emulator" || args(0) == "-e") {
-            build(ROOT);
-            emulator(ROOT);
-        }
-        else if (args(0) == "--device" || args(0) == "-d") {
-            build(ROOT);
-            device(ROOT);
-        }
-        else if (args(0).substr(0,9) == "--target=") {
-            build(ROOT);
-            var device_id = args(0).split("--target=").join("");
-            target(ROOT, device_id);
-        }
-        else {
-            Log("WARNING: [ --target=<ID> | --emulator | --device ] not specified, defaulting to --emulator");
-            if (args(0) == "--release") {
-                build_type = RELEASE;
-                build(ROOT);
-                emulator(ROOT);
-            }
-            else if (args(0) == "--debug") {
-                build_type = DEBUG;
-                build(ROOT);
-                emulator(ROOT);
-            }
-            else if (args(0) == "--nobuild") {
-                build_type = NO_BUILD;
-                emulator(ROOT);
-            }
             else {
                 Log('Error: \"' + args(0) + '\" is not recognized as a deploy option', true);
                 Usage();
@@ -319,8 +332,6 @@
         WScript.Quit(2);
     }
 }
-else {
-    Log("WARNING: [ --target=<ID> | --emulator | --device ] not specified, defaulting to --emulator");
-    build(ROOT);
-    emulator(ROOT);
-}
\ No newline at end of file
+
+// Finally run the project!
+run(ROOT);
\ No newline at end of file