function SetTuiComTrackValue(idHidField, valHisField){	var hidRef = document.getElementById(idHidField);	if(hidRef)	{		hidRef.value = valHisField;	}}function GetSetVars(idSrc, idElem){	var hidRefLocal = document.getElementById(idSrc+"_"+idElem);	if(hidRefLocal)	{		hidRefGlobal = document.getElementById(idSrc);		if(hidRefGlobal)			hidRefGlobal.value = hidRefLocal.value;	}}function GetSetLocalInfoValues(idElem){	GetSetVars('tct_land', idElem);	GetSetVars('tct_region', idElem);	GetSetVars('tct_ort', idElem);	GetSetVars('tct_station', idElem);	GetSetVars('tct_typ', idElem);	GetSetVars('tct_hersteller', idElem);	GetSetVars('tct_supplier', idElem);	var temp_country = jQuery('#tct_land').val();	var temp_region = jQuery('#tct_region').val();	var temp_city = jQuery('#tct_ort').val();	var temp_station = jQuery('#tct_station').val();	var temp_carmanuf = jQuery('#tct_hersteller').val();	var temp_cartype = jQuery('#tct_typ').val();	var temp_supplier = jQuery('#tct_supplier').val();}
