// WebTrends SmartSource Data Collector
// Copyright (c) 1996-2006 WebTrends Inc. All rights reserved.
// $DateTime: 2006/03/01 12:51:54 $

// Code section for Track clicks to links leading offsite.
function dcsOffsite(evt){
	evt=evt||(window.event||"");
	if (evt){
		var e=dcsEvt(evt,"A");
		var host=e.hostname;
		if (host&&!dcsIsOnsite(host)){
			var qry=e.search?e.search.substring(e.search.indexOf("?")+1,e.search.length):"";
			var path=e.pathname?((e.pathname.indexOf("/")!=0)?"/"+e.pathname:e.pathname):"/";
			dcsSaveHref(evt);
			dcsMultiTrack("DCS.dcssip",host,"DCS.dcsuri",path,"DCS.dcsqry",qry,"WT.ti","Offsite:"+host+path,"WT.os","1");
			DCS.dcssip=DCS.dcsuri=DCS.dcsqry=WT.ti=WT.os="";
		}
	}
}

