﻿// JScript File

/*
Function name: SETACCOUNTBYENV
DESCRIPTION: This function sets the Omniture account according to the domain /environment
Input parameters: none
Return:s_accountbyenv | Returns the Omniture account  based on the doamin
i.e. for localhost/ staging.hondajet.honda.com/ pat.hondajet.honda.com it sets
"ahmhondajetdev"
for production it uses ahmhondajet
Author: Binod Kumar
Date: 6/23/2009
Version:1.0
History: Created
Modifed: 7/5/2009
Removed location.domain impementation becasue of environment.config implementation
Purpose: To avoid the omniture account changes in production when ATO is submitted.
*/
function setaccountbyenv()
{   var s_accountbyenv;
    s_accountbyenv = 'ahmhondajetprod';
    return s_accountbyenv;
}
