var cmsServerURL = "http://content.betfair.com"; var statsURL = "http://stats.betfairgames.com"; var partialOver18URL = "/misc/?product=portal&sWhichKey=GamCare"; var over18URL = cmsServerURL + partialOver18URL; /** * games name that are used */ var xpok = "xpok"; var xbj = "xbj"; var xhilo = "xhilo"; var xbac = "xbac"; var xoh = "xoh"; /** * Update url based on specific environment configured by chef * @param currentObj */ function over18(currentObj) { currentObj.href = over18URL; currentObj.target = "_blank"; } /** * * @param currentObj * @param gameName */ function openStatsGame(currentObj, gameName) { var url = statsURL + "/" + gameName + "/"; currentObj.href = url; currentObj.target = "_blank"; }