﻿//News_Events - events.aspx
//Our_Tequilas - our-tequilas.aspx
//Party_Planner - party-planner.aspx
//All_Recipes - all-recipes.aspx
//The_Story_of_Real_Tequila - story.aspx

function GetActionTag(actionTag){
	postTrack(actionTag);
}

function postTrack(actionTag) {

    var reTrack = {
        News_Events: '/events.aspx',
        Our_Tequilas: '/our-tequilas.aspx',
        Party_Planner: '/party-planner.aspx',
        All_Recipes: '/all-recipes.aspx',
        The_Story_of_Real_Tequila: '/story.aspx',
        Start_Planning_Button: '/default.aspx'
        
    };
    
    var trackSrc = "http://view.atdmt.com/jaction/" + actionTag;
    var trackfile = document.createElement('script');
    trackfile.setAttribute("type", "text/javascript");
    trackfile.setAttribute("src", trackSrc);

    if (typeof trackfile != "undefined") {
        document.getElementById("ctl00_mHead").appendChild(trackfile);
    }

    if (typeof trackfile != "undefined" && actionTag != 'Start_Planning_Button') {
        setTimeout('redirect("' + reTrack[actionTag] + '")', 500);
    }
}

function redirect(locAddy) {window.location = locAddy; }
