﻿
	function Ajax_UpdatePhoneTracking(sourcecode, country) {
		$.ajax({
			type: "GET",
			url: "/ajaxserver/svr_trackPhone.aspx",
			data: "sourcecode=" + sourcecode + "&countrycode=" + country,
			success: function(msg) {
				if (msg == "show.phone") {
					$("#hidPhone").css("display", "");
					$("#phone").hide();
				}

				if (msg == "show.fax") {
					$("#hidFax").css("display", "");
					$("#fax").hide();
				}

			}
		});
	}

