/* Sophus3 logging request - http://www.sophus3.com - Copyright (c) Sophus3 Ltd 2001-2007. All rights reserved. Patent Pending.

 * For Honda UK Car Dealer Sites. Change the value of tc_logging_active to switch off logging on the site. */

if (typeof tc_logging_active == 'undefined') tc_logging_active = true;



tc_site_id = tc_get_site_id();
tc_server_url = "honda.touchclarity.com";
tc_log_path = '/sophus3';
document.write("<scr"+"ipt language='JavaScript' type='text/javascript' src='"+tc_log_path+"/logging-code.js'></scr"+"ipt>");

// custom functions for Honda Portal sites
function tc_get_site_id() {
	var domain = document.location.hostname;
	domain = domain.toLowerCase();
	domain = domain.substring(domain.lastIndexOf(".")+1);
	     if (domain.toLowerCase() == "uk") tc_site_id = 546;
	else tc_site_id = 546;  // Honda Car Dealers
	return tc_site_id;
}