Yes I did. Well I have found out the answer, There was a mistake in my code.
(function () { WinJS.Namespace.define("commonFunctions", {
authenticate: function () {
return true; }
});
}());
The Code was not enclosed in the function (anonymus block ();) Hence I was not able to access the method.