
	//REFERENCE PAGE TAG
	// CONSTANTS
	//****************************************************************************************
	// Changes by Mayur.
	// Set the variable ct to load javascript instead of an embedded image file
	//****************************************************************************************
	var ct = "<s" + "cript type=\"text/javascript\" src=\"";
	//var ct = "<img src=";
	
	//****************************************************************************************
	// Changes by Mayur.
	// Set the variable cd to the crossdomain website. The qa region is qacrossdomain
	//****************************************************************************************
	var cd = "http://crossdomain.capitalone.com";
	//var cd = "[PATH_TO_WEB_SERVER]"; //this should contain the domain of the
	//web site that will host the page tag
	
	//****************************************************************************************
	// Changes by Mayur.
	// Set the variable cu to the path to the null.js file ont he crossdomain website
	//****************************************************************************************
	var cu = "/common/scripts/null.js?Log=1";
	//var cu = "[PATH_TO_WEB_PAGE_TAG_CODE]/zag.gif?Log=1"; 
		//this should contain the full path to
		//the zag.gif file (excluding domain) and
		//include the query string of log=1
	
	//****************************************************************************************
	// Changes by Mayur.
	// Set the variable ce to close the script tag that was open in variable ct
	//****************************************************************************************
	var ce = "\"><\/s" + "cript>";
	//var ce = ">";
	
	var c = {};
	c["sw"] = screen.width;
	c["sh"] = screen.height;
	c["cd"] = screen.colorDepth;
	var co = "";
	
	for ( cKey in c ) {
		co = co + "&" + cKey + "=" + encodeURIComponent(c[cKey]);
	}
	
	document.write(ct,cd,cu,co,ce);
	//alert(ct + cd + cu + co + ce);
	var d = {};
	d["Pagename"] = location.hostname + location.pathname + location.search;
	d["referrer"] = document.referrer;
	d["cb"] = new Date().getTime();
	d["appname"] = "COPOS_COHF";
	
	var vo = "";
	
	if (typeof v != "undefined") {
		for ( vKey in v ) {
			vo = vo + "&" + vKey + "=" + encodeURIComponent(v[vKey]);
		}
	}
	
	for ( dKey in d ) {
		vo = vo + "&" + dKey + "=" + encodeURIComponent(d[dKey]);
	}
	
	document.write(ct,cd,cu,vo,ce);
	//alert(ct + cd + cu + vo + ce);
	//END REFERENCE PAGE TAG
	
	
