		function t (m) 
		{
		var ab= m.split(";");
		var t_fixed = ab[1];
		var number_fixed = ab[3];
		var t_mobile = ab[4];
		var number_mobile = ab[6];
		if (t_fixed!='')
		{
		document.form2.value=number_fixed;
		document.form2.tv.value=t_fixed;
		}
		if (t_mobile!='')
		{
		document.form2.value=number_mobile;
		document.form2.tm.value=t_mobile;
				} 
		}

