/* ============================== sophus3 ==============================
   logging script for                                                               29/11/2010
   
   Peugeot Delaer websites - Luxembourg
   
   Version 5.1
   Copyright (c) Sophus Ltd 2010. All rights reserved. Patent Pending.
   http://www.sophus3.com
   =====================================================================*/
   
/*=============================== Switch ==============================*/   
   if (typeof tc_logging_active == 'undefined') tc_logging_active = true;
   // If you want to switch off the tracking use the following line instead:
   // tc_logging_active = false;
/*=====================================================================*/

/* =========================== Customisation ===========================*/
if (typeof tc_site_id == 'undefined') 
	tc_site_id = 807;

tc_server_url = "psa.sophus3.com";
/*tc_log_path = "/sophus3";*/
/*=====================================================================*/

//Captures query string
if (location.search != null && location.search.length > 1) {
	if (tc_page_alias!= null && tc_page_alias.length > 1) {

		if (tc_page_alias.indexOf('?') == -1) {
			tc_page_alias = tc_page_alias + location.search;
		}
		else {
			if (tc_page_alias.indexOf('&') == tc_page_alias.length-1) {
				tc_page_alias = tc_page_alias + location.search.substring(1);
			}
			else{
				tc_page_alias = tc_page_alias + "&" + location.search.substring(1);
			}
		}
	}
}

document.write("<scr"+"ipt language='JavaScript' type='text/javascript' src='"+tc_log_path+"/logging-code.js'></scr"+"ipt>");
