function OvxTrack() {
	this.wtLoaded = false;
	var gDcsId = true;
		

	if (typeof(_ovxTrack_prototype_called) == 'undefined') {
    		_ovxTrack_prototype_called = true;
    		OvxTrack.prototype.init = init;
    		OvxTrack.prototype.webTrendsCaller = webTrendsCaller;
   			OvxTrack.prototype.ovxFlashLinkIdFactory = ovxFlashLinkIdFactory;
    	}
	
	// initialize the tracking array
	function init() {
		if( gDcsId != "undefined") {
			this.wtLoaded = true;
			}
		}
	}
	
	// call WT and pass the relevant info.
	function webTrendsCaller(nameOfTrackedAction) {
		//dcsMultiTrack('DCS.dcsuri','/experienceWireless','DCS.dcsref',window.location.href,'DCSext.wtEvent',nameOfTrackedAction);
		//alert('will call WT with wtEvent = ' + nameOfTrackedAction);
	}
	
	function ovxFlashLinkIdFactory(name) {
		if(name) {
			if(this.wtLoaded = true) {
				this.webTrendsCaller(name);
			}
		}
	}




