<!--

	// fn log_to_dcs() : generates the image source of a DCS tag tracking the custom
	// parameters (see below) which must be set by the calling page.
	// presupposes the existence of an image on the calling page with name="DCSIMG"
	
	function log_to_dcs () {
	
		// Copyright 2001 Webtrends Corporation
		
		var P="";
		var sCurrent ="";
		var dCurrent = new Date();
		sCurrent = dCurrent;
		
		// add the new parameters
		P += "dcsuri="+window.location.pathname;
		P += "&dcsqry="+escape(window.location.search);
		
		if ((window.document.referrer != "") && (window.document.referrer!= "-")){
			if (!(navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) < 4) ){
				P+="&dcsref="+escape(window.document.referrer);
			}
		}
		
		P += "&dcssip="+escape(window.document.domain);
		
		sCurrent += ":"+dCurrent.getMilliseconds();
		
		P += "&dcsdat="+escape(sCurrent);
		
		// Add your CUSTOM PARAMETERS here
		// these parameters are defined template-side:
		// 
		// 		site_id
		// 		region
		// 		state
		// 		page_type
		// 		page_title
		// 		object_id
		// 		category
		// 		search_term
		// 		exit_link
		//		gTagPath
		
		P += "&site_id="+escape(site_id);
		P += "&region="+escape(region);
		P += "&state="+escape(state);
		P += "&page_type="+escape(page_type);
		P += "&page_title="+escape(page_title);
		P += "&object_id="+escape(object_id);
		P += "&category="+escape(category);
		P += "&search_term="+escape(search_term);
		P += "&exit_link="+escape(exit_link);
		P += "&gTagPath="+escape(gTagPath);
		
		// End of customize code
		
		if ( document.images ){
			document.images[ "DCSIMG" ].src = "http://dcshelp.verizon.net/dcs.gif?"+P;
		}
	}
	
	// fn track_link( url ) : log the outbound link specified in 'url' and redirect
	// the user to that location.  this function has the same prerequisites as
	// the function 'log_to_dcs()'
	
	function track_link ( url ) {
		page_type = "exit";
		exit_link = url;
		log_to_dcs();
		window.location = url;
	}

// -->