Is this all your code? I can't see anything that actually calls your VBS function. If you want it to happen when you click the Submit button, try changing that to a standard button which calls your VBS function.
So <input type="submit" value="Submit">
becomes <input type="button" value="Submit" onclick="VerifyData()">
|