var VOI = {
    args: null,
    Init: function() {
        if (typeof _gat == 'undefined') {
            var script = document.createElement('script');
            var host = location.protocol == 'http:' ? 'http://www' : 'https://secure';
            script.setAttribute('src', host + '.google-analytics.com/ga.js');
            script.setAttribute('type', 'text/javascript');
            document.getElementsByTagName('head')[0].appendChild(script);
            setTimeout('VOI.Track(true)', 10);
        }
    },
    Track: function() {
        if (this.args == null) this.args = arguments;
        if (typeof _gat == 'undefined') {
            if (arguments[0] === true) return void (setTimeout('VOI.Track(true)', 100));
            else return void (this.Init());
        }
        if (this.args.length == 2) this.args.push('');
        try {
            _gat._getTracker("UA-8190381-1")
                ._trackEvent('VOI', this.args[0], this.args[1], this.args[2]);
        } catch (x) { }
    }
}