(function() {
  if (typeof(window.OrderRegistration) == 'undefined' || typeof(window.LeadRegistration) == 'undefined') {
    window.OrderRegistration = window.LeadRegistration = {
    	orders: {},
    	status: "ACCEPTED",
    	reference_id: "",
    	customer_id: "",
    	transaction_id: "",
	
    	PENDING: "PENDING",
    	ACCEPTED: "ACCEPTED",
    	CANCELED: "CANCELED",
    	BOGUS: "BOGUS",
	
    	DEFAULT_CURRENCY: "SEK",
	
    	register: function(options) {
    		var tracker_id = options.ti;
    		options.cy = options.cy || this.DEFAULT_CURRENCY;
    		this.orders[tracker_id] = this.orders[tracker_id] || [];
    		this.orders[tracker_id].push(options);
    	},
	
    	user: function(options) { }
    };
    
    var script = document.createElement("script");
    script.setAttribute("src", "http://de17a.com/j/e920e04_a.js");
    document.getElementsByTagName("head")[0].appendChild(script);
  }
  window.AdActionOrderSetup = function() {
    if (typeof(window.__$Ad) != "undefined") {
      window.__$Ad.orders.setup('http://de17a.com/o');
    } else {
      window.setTimeout(window.AdActionOrderSetup, 50);
    }
  }
  window.AdActionOrderSetup();
})();