function swodeTracker(action) {
//	var iframe = HtmlBuilder.node('iframe', {src:'http://'}
	var uri = encodeURIComponent(document.location.pathname);
	var ref = encodeURIComponent(document.referrer);
	var dom = encodeURIComponent(document.domain);
	var prt = encodeURIComponent(window.location.port || 80);
	var qry = encodeURIComponent(window.location.search.substring(1,window.location.search.length));
	var id = action;
	var req = 'http://id.swode.com/track/action.wo?id='+id+'&uri='+uri+'&ref='+ref+'&dom='+dom+'&prt='+prt+'&qry='+qry;
	var trackIframe = document.createElement('iframe');
	trackIframe.src=req;
	trackIframe.width=0;
	trackIframe.height=0;
	trackIframe.setAttribute('border',0);
	trackIframe.setAttribute('frameborder',0);
	trackIframe.setAttribute('scrolling','no');
	
	var addIframe = function() {
		document.body.appendChild(trackIframe);
	}	
	if (document.all){
		window.attachEvent('onload',addIframe)
	}
	else{
		window.addEventListener('load',addIframe,false);
	}

}

